diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..2aef528d --- /dev/null +++ b/.gitattributes @@ -0,0 +1,15 @@ +* text=auto eol=lf + +*.png binary +*.jpg binary +*.jpeg binary +*.gif binary +*.ico binary +*.webp binary +*.woff binary +*.woff2 binary +*.ttf binary +*.otf binary +*.pdf binary +*.zip binary +*.webm binary diff --git a/openapi.yaml b/openapi.yaml index 95ad5d13..72146833 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -78,6 +78,8 @@ tags: description: License plate scanning operations - name: Config description: Module configuration management + - name: Release Manager + description: Release channel, deployment, and operation management - name: Branding description: Branding options management - name: Roles @@ -4030,13 +4032,15 @@ paths: - name: buttons in: query required: false - description: Highlighted button IDs (0-indexed). Accepts CSV, JSON array, or repeated query params. + description: Highlighted step tokens in order. Accepts 0-indexed button IDs, "reset", "start", and "program_picker" as CSV, JSON array, or repeated query params. schema: oneOf: - type: string - type: array items: - type: integer + oneOf: + - type: integer + - type: string - name: current_step in: query required: false @@ -5844,7 +5848,7 @@ paths: reference: {type: string} po: {type: string} pickup: {type: boolean} - order_id: {type: integer} + order_id: {type: integer, nullable: true} items: type: array items: @@ -11982,6 +11986,189 @@ paths: schema: $ref: '#/components/schemas/Error' + /superuser/releases/operations: + get: + tags: + - Release Manager + summary: List release operation runs + operationId: listReleaseOperations + parameters: + - in: query + name: channel_id + schema: + type: integer + - in: query + name: operation_type + schema: + type: string + - in: query + name: status + schema: + type: string + - in: query + name: limit + schema: + type: integer + minimum: 1 + maximum: 200 + responses: + '200': + description: Release operation runs + content: + application/json: + schema: + type: object + properties: + success: + type: boolean + data: + type: array + items: + type: object + additionalProperties: true + '401': + $ref: '#/components/responses/Unauthorized' + '403': + $ref: '#/components/responses/Forbidden' + + /superuser/releases/operations/{id}: + get: + tags: + - Release Manager + summary: Get release operation details + operationId: getReleaseOperation + parameters: + - in: path + name: id + required: true + schema: + type: integer + responses: + '200': + description: Release operation details + content: + application/json: + schema: + type: object + properties: + success: + type: boolean + data: + type: object + additionalProperties: true + '401': + $ref: '#/components/responses/Unauthorized' + '403': + $ref: '#/components/responses/Forbidden' + '404': + $ref: '#/components/responses/NotFound' + + /superuser/releases/test-runs: + post: + tags: + - Release Manager + summary: Run Release Manager diagnostics + operationId: runReleaseTest + requestBody: + required: false + content: + application/json: + schema: + type: object + additionalProperties: true + responses: + '202': + description: Release test operation started + content: + application/json: + schema: + type: object + properties: + success: + type: boolean + data: + type: object + additionalProperties: true + '401': + $ref: '#/components/responses/Unauthorized' + '403': + $ref: '#/components/responses/Forbidden' + '409': + $ref: '#/components/responses/Conflict' + + /superuser/releases/channels/{id}/sync: + post: + tags: + - Release Manager + summary: Sync latest branch commits into a release channel + operationId: syncReleaseChannel + parameters: + - in: path + name: id + required: true + schema: + type: integer + responses: + '202': + description: Channel sync operation started + content: + application/json: + schema: + type: object + properties: + success: + type: boolean + data: + type: object + additionalProperties: true + '401': + $ref: '#/components/responses/Unauthorized' + '403': + $ref: '#/components/responses/Forbidden' + '409': + $ref: '#/components/responses/Conflict' + + /superuser/releases/issues/actions: + post: + tags: + - Release Manager + summary: Run a Release Manager issue action + operationId: runReleaseIssueAction + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + issue_key: + type: string + action_id: + type: string + inputs: + type: object + additionalProperties: true + confirm: + type: boolean + additionalProperties: true + responses: + '200': + description: Issue action result + content: + application/json: + schema: + type: object + properties: + success: + type: boolean + data: + type: object + additionalProperties: true + '401': + $ref: '#/components/responses/Unauthorized' + '403': + $ref: '#/components/responses/Forbidden' + components: securitySchemes: BearerAuth: diff --git a/services/caddy/logs/access.log b/services/caddy/logs/access.log index aa9a58e7..9c8359ac 100644 --- a/services/caddy/logs/access.log +++ b/services/caddy/logs/access.log @@ -1,2839 +1,4778 @@ -{"level":"info","ts":1773826166.9708004,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Origin":["http://localhost:5173"]}},"bytes_read":0,"user_id":"","duration":0.336730715,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1773826169.3245327,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Pragma":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.125025382,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826169.3245995,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"X-Forwarded-Prefix":["/api"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"Cache-Control":["no-cache"],"Sec-Fetch-Site":["same-site"]}},"bytes_read":0,"user_id":"","duration":0.260210293,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826169.5794039,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.500289085,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826170.0778017,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["0b64317da32a"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"X-Forwarded-Prefix":["/api"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"]}},"bytes_read":0,"user_id":"","duration":0.39669069,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826171.5490258,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.069669237,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826171.9627604,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":0.497760546,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826173.9760478,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Origin":["http://localhost:5173"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.070845887,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826174.2890058,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.384107891,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826174.4404097,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.39908183,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826174.8434205,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Cache-Control":["no-cache"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":0.323563505,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826176.69389,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.385544905,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826176.7040854,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"Cache-Control":["no-cache"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.395716047,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826179.9976525,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.252061272,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"]}} -{"level":"info","ts":1773826179.9976532,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":0.252032823,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826180.2976575,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.416949968,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826180.702024,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-For":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.355183735,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826182.3615072,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Referer":["http://localhost:5173/"]}},"bytes_read":0,"user_id":"","duration":0.213493623,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826182.3619726,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.214062164,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826184.9015193,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.309120507,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826185.0053287,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"Pragma":["no-cache"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.412929425,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826185.1834722,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Pragma":["no-cache"],"X-Forwarded-For":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":0.458085374,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826185.596906,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.404400262,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826187.2444446,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.18.0.1"],"Referer":["http://localhost:5173/"],"X-Forwarded-Host":["localhost"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":0.245449894,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826187.2444932,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.245510879,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826189.7901962,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"]}},"bytes_read":0,"user_id":"","duration":0.351403066,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826189.845259,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":0.406399188,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826190.0125787,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Dest":["empty"],"Origin":["http://localhost:5173"]}},"bytes_read":0,"user_id":"","duration":0.436858971,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} -{"level":"info","ts":1773826190.1053317,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.061400822,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826191.9140744,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""]}},"bytes_read":0,"user_id":"","duration":0.067352992,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"]}} -{"level":"info","ts":1773826191.9140744,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Cache-Control":["no-cache"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Proto":["http"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":0.067144351,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Server":["Caddy"]}} -{"level":"info","ts":1773826194.5529275,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["0b64317da32a"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"]}},"bytes_read":0,"user_id":"","duration":0.27129644,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826194.5538201,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.272200234,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826194.8282824,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.18.0.1"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":0.410512911,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826195.345705,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Server":["0b64317da32a"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.450611072,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826196.9063478,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.223679165,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826196.907733,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Fetch-Site":["same-site"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.225121309,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826199.390079,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.266549333,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826199.54275,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"]}},"bytes_read":0,"user_id":"","duration":0.419228455,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826199.7448642,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":0.486476363,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826200.1450813,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.406705347,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826200.902575,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"OPTIONS","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8"],"Access-Control-Request-Headers":["authorization"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Access-Control-Request-Method":["GET"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["*/*"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.004933848,"size":0,"status":200,"resp_headers":{"Content-Type":["application/json"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["*"]}} -{"level":"info","ts":1773826200.9184515,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"OPTIONS","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["0b64317da32a"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"Access-Control-Request-Method":["GET"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Fetch-Site":["same-site"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8"],"Access-Control-Request-Headers":["authorization"],"Referer":["http://localhost:5173/"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.003871461,"size":0,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["*"],"Content-Type":["application/json"]}} -{"level":"info","ts":1773826201.313931,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Site":["same-site"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.6"],"X-Forwarded-Prefix":["/api"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"]}},"bytes_read":0,"user_id":"","duration":0.408608832,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826201.314516,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.417756253,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826201.6138952,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"],"Sec-Fetch-Site":["same-site"],"X-Real-Ip":["172.18.0.1"],"Authorization":[],"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en;q=0.6"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"]}},"bytes_read":0,"user_id":"","duration":0.297119022,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826201.614594,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":0.298338892,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826201.6740956,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":0.056775832,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826201.8352685,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.309177004,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826201.835635,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"X-Forwarded-Server":["0b64317da32a"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":0.309922332,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826202.1111634,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":0.434629705,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826204.2307596,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":0.270490136,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826204.231079,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":0.270777164,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"]}} -{"level":"info","ts":1773826204.9306307,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":0.834871676,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826205.0144818,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.437812131,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826206.6582522,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":0.296923602,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826206.7820892,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Cache-Control":["no-cache"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""]}},"bytes_read":0,"user_id":"","duration":0.421257269,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826209.07706,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""]}},"bytes_read":0,"user_id":"","duration":0.28168601,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826209.0780072,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.282730259,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826209.2607417,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Pragma":["no-cache"]}},"bytes_read":0,"user_id":"","duration":0.329227333,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826210.719875,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":0.336777872,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826212.4557168,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Pragma":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.288418347,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826212.6393747,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cache-Control":["no-cache"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.457420958,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826214.6817403,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Cache-Control":["no-cache"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":0.060898725,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826214.9970322,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.376193278,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826215.119907,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.37697543,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826215.5844464,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Origin":["http://localhost:5173"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.358253193,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826217.364804,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.336250288,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826217.3651576,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.353011792,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826219.6290405,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"X-Forwarded-Host":["localhost"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.168509855,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826219.6290424,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Cache-Control":["no-cache"],"Pragma":["no-cache"]}},"bytes_read":0,"user_id":"","duration":0.168515835,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826220.0472326,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.451005017,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826220.5235884,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"X-Forwarded-Port":["80"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":0.459100139,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826221.9169457,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.056181782,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1773826221.917784,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Pragma":["no-cache"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.057027708,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826222.9502344,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.668844483,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826223.49054,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.537614159,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826223.9723587,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.479864308,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826224.343807,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.368627458,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1773826224.856207,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"]}},"bytes_read":0,"user_id":"","duration":0.51019735,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826225.3152466,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.212788185,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1773826225.3152463,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":0.213877297,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826225.34763,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.489283626,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826225.3848963,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.280640345,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826225.3853478,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/"]}},"bytes_read":0,"user_id":"","duration":0.284002289,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"]}} -{"level":"info","ts":1773826225.8986015,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.548822248,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826226.4152071,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-For":["172.18.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.514747638,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826227.3371081,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":0.300847773,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826227.7347972,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-site"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.698537342,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826229.322464,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Server":["0b64317da32a"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""]}},"bytes_read":0,"user_id":"","duration":0.180099137,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826229.3229284,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.182328794,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826229.5229506,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Host":["localhost"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.547793197,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826229.7905357,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.515788574,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826230.0126746,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.487792958,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1773826230.015993,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"]}},"bytes_read":0,"user_id":"","duration":0.066576546,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826230.3144436,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.486501483,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826230.409719,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":0.09307799,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826231.4518874,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"OPTIONS","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"Access-Control-Request-Headers":["authorization"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["*/*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Access-Control-Request-Method":["GET"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.007941754,"size":0,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["*"],"Server":["Caddy"],"Content-Type":["application/json"]}} -{"level":"info","ts":1773826231.9584615,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.6"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.504336719,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} -{"level":"info","ts":1773826232.00635,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Origin":["http://localhost:5173"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.11080176,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826232.393898,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Gpc":["1"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-site"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.498349724,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826233.7580044,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.31107267,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826234.0281086,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":0.268209641,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826234.856958,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":0.064741677,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826235.0811856,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Referer":["http://localhost:5173/"],"Origin":["http://localhost:5173"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":0.410918923,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826235.0965688,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Prefix":["/api"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.305344393,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826235.096562,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Pragma":["no-cache"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Cache-Control":["no-cache"],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.305286142,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826235.758473,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Pragma":["no-cache"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":0.96652785,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826236.2328858,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":1.149166396,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826236.734551,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"OPTIONS","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["0b64317da32a"],"Referer":["http://localhost:5173/"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Origin":["http://localhost:5173"],"Sec-Fetch-Site":["same-site"],"Access-Control-Request-Headers":["authorization"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8"],"Access-Control-Request-Method":["GET"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.004409892,"size":0,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["*"],"Content-Type":["application/json"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826236.8764596,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.6"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.139966551,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826236.8765473,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.146188956,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826237.1359358,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":0.405598041,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826238.3543074,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":0.069293506,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"]}} -{"level":"info","ts":1773826238.6079137,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.078009457,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826239.8719676,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"X-Forwarded-For":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.23115293,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826239.936697,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":0.297177805,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826239.93727,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.18.0.1"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.297747795,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826240.177016,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":0.301852145,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826240.2603126,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":0.619578163,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826240.2948732,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["0b64317da32a"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.115473072,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826242.5489316,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"OPTIONS","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept":["*/*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Access-Control-Request-Headers":["authorization"],"Access-Control-Request-Method":["GET"]}},"bytes_read":0,"user_id":"","duration":0.004359668,"size":0,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["*"],"Content-Type":["application/json"]}} -{"level":"info","ts":1773826242.840928,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":0.294881878,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} -{"level":"info","ts":1773826242.8434336,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":0.29885309,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1773826243.2189693,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.6"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.667883652,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826244.6206405,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":0.518181713,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826244.7226462,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.099885191,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826245.7282386,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Cache-Control":["no-cache"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":0.286842731,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826245.7282357,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"]}},"bytes_read":0,"user_id":"","duration":0.286843033,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826245.729071,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.40778575,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826245.8759341,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-site"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.433985598,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"]}} -{"level":"info","ts":1773826246.0560663,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":0.325072718,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826246.150864,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.709473378,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826247.3969293,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"OPTIONS","host":"localhost","uri":"/ping","headers":{"Access-Control-Request-Headers":["authorization"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-site"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Access-Control-Request-Method":["GET"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.004395296,"size":0,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["*"],"Content-Type":["application/json"]}} -{"level":"info","ts":1773826247.4287875,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua-Mobile":["?0"],"Cache-Control":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"]}},"bytes_read":0,"user_id":"","duration":0.047798163,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826247.4294498,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.048426199,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826247.4584892,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"Authorization":[],"Referer":["http://localhost:5173/"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.6"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":0.059579264,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826249.377847,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.434692156,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826249.9012983,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.520719503,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826250.3366525,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"Origin":["http://localhost:5173"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.039950465,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826250.3779438,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.21601427,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826250.3779619,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"]}},"bytes_read":0,"user_id":"","duration":0.081639673,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826250.423558,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.043639415,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826250.5279162,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.231591889,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826250.5284529,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-site"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"]}},"bytes_read":0,"user_id":"","duration":0.231734683,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1773826252.2262323,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"OPTIONS","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Access-Control-Request-Headers":["authorization"],"Access-Control-Request-Method":["GET"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["*/*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.002952425,"size":0,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["*"],"Content-Type":["application/json"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826252.4899101,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"]}},"bytes_read":0,"user_id":"","duration":0.266604287,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826252.4902215,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Cache-Control":["no-cache"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":0.266939348,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826252.6353197,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.6"],"Authorization":[],"Origin":["http://localhost:5173"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":0.406947854,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} -{"level":"info","ts":1773826254.0988395,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["0b64317da32a"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":0.309949283,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826254.4142804,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["0b64317da32a"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"Referer":["http://localhost:5173/"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.313229674,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1773826255.1939533,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.052917017,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826255.1943216,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Pragma":["no-cache"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.053291772,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826255.4786673,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.474724907,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826255.5260544,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Server":["0b64317da32a"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":0.384703087,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826255.526563,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.385158447,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826256.113922,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.632900798,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826257.084515,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"OPTIONS","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"Access-Control-Request-Method":["GET"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["*/*"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8"],"Origin":["http://localhost:5173"],"Access-Control-Request-Headers":["authorization"],"Referer":["http://localhost:5173/"]}},"bytes_read":0,"user_id":"","duration":0.003835498,"size":0,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["*"],"Content-Type":["application/json"]}} -{"level":"info","ts":1773826257.4487476,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.18.0.1"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.6"],"Authorization":[],"Referer":["http://localhost:5173/"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.362283977,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826257.4492424,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Pragma":["no-cache"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Sec-Fetch-Site":["same-site"],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.368815775,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826257.6348832,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["0b64317da32a"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.55442496,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826259.0092547,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""]}},"bytes_read":0,"user_id":"","duration":0.376877321,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826259.6307788,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.619805015,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826260.145301,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.161590542,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826260.2827036,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["0b64317da32a"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.30025666,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826260.3579996,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Server":["0b64317da32a"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.374290372,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826260.358565,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""]}},"bytes_read":0,"user_id":"","duration":0.375673265,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826260.3591213,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Site":["same-site"]}},"bytes_read":0,"user_id":"","duration":0.495672175,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826260.9677532,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"OPTIONS","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Access-Control-Request-Method":["GET"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"Accept":["*/*"],"Access-Control-Request-Headers":["authorization"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.005428654,"size":0,"status":200,"resp_headers":{"Content-Type":["application/json"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["*"]}} -{"level":"info","ts":1773826261.0812206,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""]}},"bytes_read":0,"user_id":"","duration":0.719474137,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826261.131758,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.6"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":0.152860403,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826261.9229548,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"OPTIONS","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"Access-Control-Request-Headers":["authorization"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8"],"Access-Control-Request-Method":["GET"],"Referer":["http://localhost:5173/"],"Accept":["*/*"],"Origin":["http://localhost:5173"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":0.004796388,"size":0,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["*"],"Content-Type":["application/json"]}} -{"level":"info","ts":1773826262.1808798,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"]}},"bytes_read":0,"user_id":"","duration":0.262721205,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826262.3055892,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Pragma":["no-cache"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":0.387411559,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826262.3256145,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Language":["en-GB,en;q=0.6"],"Authorization":[],"Sec-Fetch-Site":["same-site"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.399990235,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826264.0834198,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":0.605018867,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1773826264.4656212,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-For":["172.18.0.1"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""]}},"bytes_read":0,"user_id":"","duration":0.379761165,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826265.159418,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Fetch-Mode":["cors"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":0.337052132,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826265.1599183,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.338656721,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826265.159959,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Origin":["http://localhost:5173"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""]}},"bytes_read":0,"user_id":"","duration":0.338665488,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826265.1599865,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":0.457723334,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826265.1608107,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.338186345,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1773826265.7457488,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Fetch-Site":["same-site"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.58234562,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1773826266.760665,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"OPTIONS","host":"localhost","uri":"/ping","headers":{"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8"],"Access-Control-Request-Headers":["authorization"],"Access-Control-Request-Method":["GET"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.003348445,"size":0,"status":200,"resp_headers":{"Content-Type":["application/json"],"X-Powered-By":["PHP/8.2.30"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["*"]}} -{"level":"info","ts":1773826267.099361,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"]}},"bytes_read":0,"user_id":"","duration":0.341886103,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826267.3528302,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.6"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":0.589548578,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826267.3544612,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["0b64317da32a"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.18.0.1"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.597138218,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826268.7962244,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"]}},"bytes_read":0,"user_id":"","duration":0.471960855,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826269.3874242,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.587826508,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826269.8864343,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.340632699,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826270.0011191,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.335564386,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826270.001632,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.336146783,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826270.1797457,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.289916136,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826270.244424,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Cache-Control":["no-cache"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":0.578840314,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826270.4123607,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Server":["0b64317da32a"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en;q=0.9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":0.746906789,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826272.5798728,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"OPTIONS","host":"localhost","uri":"/ping","headers":{"Access-Control-Request-Method":["GET"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["*/*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Access-Control-Request-Headers":["authorization"],"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.004585942,"size":0,"status":200,"resp_headers":{"Content-Type":["application/json"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["*"]}} -{"level":"info","ts":1773826272.9760356,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.6"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.393565183,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826272.9766512,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Pragma":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"]}},"bytes_read":0,"user_id":"","duration":0.401031403,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Server":["Caddy"]}} -{"level":"info","ts":1773826273.757031,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"]}},"bytes_read":0,"user_id":"","duration":1.18182985,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1773826274.6127648,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.479104184,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826275.1434913,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.528749182,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826275.6235788,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":0.137716661,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826275.6238408,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":0.259205249,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826275.7685578,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"]}},"bytes_read":0,"user_id":"","duration":0.142324079,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826275.8653605,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.379437951,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826275.8658516,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.379986088,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} -{"level":"info","ts":1773826275.8674288,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.381435854,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826277.4191809,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"OPTIONS","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Access-Control-Request-Method":["GET"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Accept":["*/*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8"],"Access-Control-Request-Headers":["authorization"],"Origin":["http://localhost:5173"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.003160298,"size":0,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["*"],"Server":["Caddy"],"Content-Type":["application/json"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826277.513314,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":0.083039333,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826277.513765,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Site":["same-site"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.083276757,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826277.839947,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.6"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua-Mobile":["?0"],"Authorization":[],"Referer":["http://localhost:5173/"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.418394618,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826279.311053,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.32588745,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826279.553671,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-site"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.240337937,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826280.4236414,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":0.219593491,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826280.4239388,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.097175698,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826280.609539,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"X-Forwarded-For":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.282907568,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826280.6095476,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":0.282945769,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826280.6837862,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.357176393,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826280.9124198,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.486043498,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} -{"level":"info","ts":1773826282.2816343,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"OPTIONS","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["*/*"],"Access-Control-Request-Headers":["authorization"],"Referer":["http://localhost:5173/"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"Access-Control-Request-Method":["GET"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.004272434,"size":0,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["*"],"Content-Type":["application/json"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826282.5014513,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.224096667,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826282.5932522,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Authorization":[],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.6"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.309016132,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826282.762372,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.485008109,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826284.2473116,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"]}},"bytes_read":0,"user_id":"","duration":0.419944897,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826284.7155588,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.465644762,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826285.3731148,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Server":["0b64317da32a"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":0.33201332,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826285.382416,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":0.204788999,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826285.3824492,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.204646815,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826285.527407,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"Referer":["http://localhost:5173/"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.349765478,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826285.5277753,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.350248889,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826286.06445,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Sec-Fetch-Site":["same-site"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.688880394,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826287.113801,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"OPTIONS","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"X-Forwarded-For":["172.18.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"Accept":["*/*"],"Access-Control-Request-Headers":["authorization"],"Referer":["http://localhost:5173/"],"X-Forwarded-Proto":["http"],"Access-Control-Request-Method":["GET"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.004059447,"size":0,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["*"],"Content-Type":["application/json"],"Server":["Caddy"]}} -{"level":"info","ts":1773826287.419412,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.309658213,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826287.4198174,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":0.31017131,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826287.5938196,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Language":["en-GB,en;q=0.6"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.477313442,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826289.0298648,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-site"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Server":["0b64317da32a"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.360409759,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826289.3319452,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-site"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Real-Ip":["172.18.0.1"],"Referer":["http://localhost:5173/"]}},"bytes_read":0,"user_id":"","duration":0.299687827,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826290.3376222,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.452177689,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826290.6402397,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":0.300352632,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826291.9410431,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"OPTIONS","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Access-Control-Request-Headers":["authorization"],"Access-Control-Request-Method":["GET"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"Origin":["http://localhost:5173"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.003132931,"size":0,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["*"],"Content-Type":["application/json"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826292.3842604,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.6"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.440860827,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826293.9343493,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":0.439952281,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} -{"level":"info","ts":1773826294.3440604,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Gpc":["1"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"]}},"bytes_read":0,"user_id":"","duration":0.407360227,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826295.1711533,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.449134138,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826295.8527117,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.679430866,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826298.575222,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":0.239223342,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826299.1671898,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":0.589304101,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826299.9768214,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"Referer":["http://localhost:5173/"]}},"bytes_read":0,"user_id":"","duration":0.42280195,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826300.3889349,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Site":["same-site"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.409451117,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826304.4682908,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Referer":["http://localhost:5173/"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":0.297302011,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826304.6760879,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"]}},"bytes_read":0,"user_id":"","duration":0.205166353,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826305.7035754,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.309903469,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826306.06365,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.35758992,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826309.426586,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.411602016,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826309.7365882,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.307559619,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826310.5728822,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.340467364,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826311.1087942,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":0.53365395,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826314.3029535,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":0.451387991,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826314.7390003,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.433637015,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826315.145722,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Gpc":["1"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""]}},"bytes_read":0,"user_id":"","duration":0.071645191,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826315.2184045,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.18.0.1"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.07060575,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826318.9327765,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"X-Forwarded-Prefix":["/api"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.223040782,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1773826319.372069,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.435527131,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826320.2377045,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-site"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Prefix":["/api"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Referer":["http://localhost:5173/"]}},"bytes_read":0,"user_id":"","duration":0.310641846,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826320.6059396,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.366049107,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826321.019666,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"OPTIONS","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8"],"Access-Control-Request-Headers":["authorization"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept":["*/*"],"Access-Control-Request-Method":["GET"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.005125441,"size":0,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Access-Control-Allow-Headers":["*"],"Content-Type":["application/json"]}} -{"level":"info","ts":1773826321.0330973,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43692","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"OPTIONS","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Access-Control-Request-Method":["GET"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8"],"Origin":["http://localhost:5173"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-site"],"Accept":["*/*"],"Access-Control-Request-Headers":["authorization"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.004094559,"size":0,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Access-Control-Allow-Headers":["*"],"Content-Type":["application/json"]}} -{"level":"info","ts":1773826321.065755,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.050754619,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826321.0663266,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43688","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":0.049707903,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826321.0714931,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":0.058299498,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826321.3352807,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.6"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":0.31271021,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826321.3353183,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Proto":["http"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":0.320461487,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826321.33543,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.322217999,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826321.336045,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":0.319932569,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1773826321.454813,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en;q=0.6"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.115766323,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826324.1107216,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Host":["localhost"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":0.563325744,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826324.51782,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"]}},"bytes_read":0,"user_id":"","duration":0.404870334,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826325.0767791,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.313798868,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826325.516587,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.43789269,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826328.5783246,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":0.192510186,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826328.9600253,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.33591841,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826329.9461956,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.343614408,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1773826330.0325968,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.08370118,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826333.4395497,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.203711159,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826334.8488133,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.407913962,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826336.189148,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":0.775229936,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826336.5129259,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"]}},"bytes_read":0,"user_id":"","duration":0.321547405,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826339.8193758,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":0.778237382,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826340.484483,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.661839092,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826341.052277,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.565531578,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826341.1713974,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":0.116995635,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"]}} -{"level":"info","ts":1773826344.3424993,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.459823803,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826344.9462178,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":0.600610796,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826345.400256,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.298155702,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826346.0480387,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.645135856,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826349.156766,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"Origin":["http://localhost:5173"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.41996003,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826349.5705867,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.410768907,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826350.1640942,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.209420494,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826350.5521028,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Server":["0b64317da32a"],"Referer":["http://localhost:5173/"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.385858993,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} -{"level":"info","ts":1773826354.1082847,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.532853099,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826354.7754962,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["0b64317da32a"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":0.664431534,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826355.290558,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.18.0.1"],"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"]}},"bytes_read":0,"user_id":"","duration":0.498205064,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1773826355.7959008,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.50333574,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826359.4631894,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Prefix":["/api"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":1.046471635,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826359.8179033,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"]}},"bytes_read":0,"user_id":"","duration":0.352511432,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826360.3723376,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.552128883,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826361.6249712,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":1.250746166,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826364.3044171,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":1.036105659,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826365.7734706,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"Origin":["http://localhost:5173"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":0.500940415,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826366.3151329,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Referer":["http://localhost:5173/"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.539422058,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826366.9041758,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.18.0.1"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":0.585534079,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826369.6179724,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"]}},"bytes_read":0,"user_id":"","duration":0.552731569,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826370.0349576,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":0.414776487,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826370.3518865,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Referer":["http://localhost:5173/"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.066909465,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826370.719497,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":0.365441292,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826374.2375813,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":0.322032518,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826374.37445,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.134229129,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Server":["Caddy"]}} -{"level":"info","ts":1773826375.2585166,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-site"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.120342752,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826375.7874947,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":0.526105892,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826379.1529784,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.391462836,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826379.737555,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.582494402,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826380.8159359,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":0.838749844,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826380.9110472,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.0926876,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826381.0814805,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"OPTIONS","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Access-Control-Request-Method":["GET"],"Origin":["http://localhost:5173"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Port":["80"],"Accept":["*/*"],"Access-Control-Request-Headers":["authorization"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":0.003464438,"size":0,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["*"],"Content-Type":["application/json"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826381.2150488,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43688","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.135002073,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826381.353293,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Fetch-Site":["same-site"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":0.275410157,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826381.4263964,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.347429674,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826381.4263968,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Cache-Control":["no-cache"],"Pragma":["no-cache"]}},"bytes_read":0,"user_id":"","duration":0.347228296,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826381.4269779,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"]}},"bytes_read":0,"user_id":"","duration":0.347126352,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826381.4264684,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Proto":["http"],"Pragma":["no-cache"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Origin":["http://localhost:5173"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":0.346251891,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826381.4288092,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43692","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"OPTIONS","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8"],"Access-Control-Request-Headers":["authorization"],"Access-Control-Request-Method":["GET"],"Referer":["http://localhost:5173/"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["*/*"],"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.33539058,"size":0,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["*"],"Server":["Caddy"],"Content-Type":["application/json"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826381.725631,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Gpc":["1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"Origin":["http://localhost:5173"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.6"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.640679594,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826381.8789194,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.6"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":0.150518915,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826384.2855997,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"]}},"bytes_read":0,"user_id":"","duration":0.68677901,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826384.419676,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"Sec-Fetch-Site":["same-site"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.131463831,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826385.296497,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.482235259,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826385.9763112,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":0.677502726,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826389.0283816,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.585028881,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826389.7241693,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Origin":["http://localhost:5173"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.693332769,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826389.9961612,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.270062312,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826390.0560722,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"],"Origin":["http://localhost:5173"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":0.058272897,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826394.1860425,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Prefix":["/api"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"Origin":["http://localhost:5173"],"Sec-Gpc":["1"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.905101807,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826394.8389401,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.18.0.1"],"X-Forwarded-For":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"X-Forwarded-Prefix":["/api"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":0.650678782,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"]}} -{"level":"info","ts":1773826396.8760483,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":1.062733619,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826397.4128597,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"X-Forwarded-For":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-site"]}},"bytes_read":0,"user_id":"","duration":0.533872213,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826399.3711278,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":0.275338328,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826399.8407238,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.467445268,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826400.8211105,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Prefix":["/api"],"Sec-Gpc":["1"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.503336673,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826401.3927042,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""]}},"bytes_read":0,"user_id":"","duration":0.568617153,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826404.9276648,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""]}},"bytes_read":0,"user_id":"","duration":0.981689797,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826405.3865352,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"Referer":["http://localhost:5173/"]}},"bytes_read":0,"user_id":"","duration":0.45668309,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826405.7212017,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.332704571,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"]}} -{"level":"info","ts":1773826406.24432,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Real-Ip":["172.18.0.1"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.520752258,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826409.4144459,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.619358427,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826409.8032606,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-site"],"Origin":["http://localhost:5173"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.386445718,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826410.3962119,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.382138844,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826410.8523376,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"]}},"bytes_read":0,"user_id":"","duration":0.453331614,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826413.9524436,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.317999654,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826414.2163806,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":0.261299034,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826415.6521916,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.804872582,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826416.2200892,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.56558394,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826418.6992216,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.230586771,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826419.2315469,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.528964389,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826420.1994016,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"Origin":["http://localhost:5173"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.516745862,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826420.5655065,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.364192672,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826423.6324012,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["0b64317da32a"],"Referer":["http://localhost:5173/"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":0.336594454,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826424.1642637,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.529683486,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826424.9427843,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":0.417239584,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826425.25549,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.310120034,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826429.4322617,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["0b64317da32a"],"X-Forwarded-For":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.294377725,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826429.6303096,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"Origin":["http://localhost:5173"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":0.195912736,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826430.5558884,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""]}},"bytes_read":0,"user_id":"","duration":0.20020931,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826430.6338358,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.075953449,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826434.7283158,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-site"]}},"bytes_read":0,"user_id":"","duration":0.749575954,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826435.4002984,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":0.669408179,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826436.0852852,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Origin":["http://localhost:5173"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":0.681158799,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826436.6932082,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":0.605147457,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826439.2860832,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":0.454779172,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826439.8214653,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.533406742,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826440.4660094,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"]}},"bytes_read":0,"user_id":"","duration":0.417585991,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826440.8675385,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-site"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Real-Ip":["172.18.0.1"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"]}},"bytes_read":0,"user_id":"","duration":0.398997562,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826441.1522396,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43692","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"OPTIONS","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept":["*/*"],"Access-Control-Request-Headers":["authorization"],"Access-Control-Request-Method":["GET"],"Sec-Fetch-Site":["same-site"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":0.005090754,"size":0,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["*"],"Content-Type":["application/json"]}} -{"level":"info","ts":1773826441.1626284,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43688","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"OPTIONS","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept":["*/*"],"Access-Control-Request-Headers":["authorization"],"Access-Control-Request-Method":["GET"],"Referer":["http://localhost:5173/"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.002807514,"size":0,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["*"],"Content-Type":["application/json"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826441.3849103,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":0.236757779,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826441.3854418,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Server":["0b64317da32a"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.236391524,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826441.473212,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.326754444,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826441.4736257,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.325698639,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826441.473778,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.32471909,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826441.4738522,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["0b64317da32a"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.325672989,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826441.6903734,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43692","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.6"],"Referer":["http://localhost:5173/"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.53561241,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826442.0301497,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43692","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.6"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":0.337053066,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826443.734806,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43692","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Referer":["http://localhost:5173/"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.057697718,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826444.2450626,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43692","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-For":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.328282862,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826445.1334405,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43692","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":0.237094723,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1773826445.4486778,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43692","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-site"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.312441438,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826448.7812324,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43692","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"]}},"bytes_read":0,"user_id":"","duration":0.276600283,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826449.2926083,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43692","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-site"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"]}},"bytes_read":0,"user_id":"","duration":0.509287977,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826450.3206308,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43692","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":0.58550417,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826450.4873588,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43692","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"]}},"bytes_read":0,"user_id":"","duration":0.163633449,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826453.6153731,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43692","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":0.261944392,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826453.958753,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43692","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":0.341302764,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826454.935746,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43692","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":0.358773571,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826455.1492126,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43692","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":0.21140475,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826459.3996916,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43692","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":0.239497817,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826460.007519,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43692","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Server":["0b64317da32a"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":0.605473485,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826460.4367466,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43692","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.054840982,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826460.6668808,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43692","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.227959031,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826464.721618,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43692","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":0.516813632,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"error","ts":1773826464.7636774,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["0b64317da32a"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"]}},"bytes_read":0,"user_id":"","duration":0.558936596,"size":111,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826464.8303838,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/guest/departments?include_lanes=true","headers":{"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":0.606549241,"size":735,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1773826469.3836143,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"]}},"bytes_read":0,"user_id":"","duration":0.334187709,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826474.1502144,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":0.245024222,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826479.0968618,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Proto":["http"],"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":0.355127487,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826484.1756196,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.582159192,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1773826490.199057,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-site"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":0.804270926,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"error","ts":1773826493.4475157,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Sec-Fetch-Site":["same-site"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.367623667,"size":111,"status":401,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826493.652717,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["0b64317da32a"]}},"bytes_read":0,"user_id":"","duration":0.572779984,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826495.118352,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43692","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/guest/departments?include_lanes=true","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.018611954,"size":735,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1773826499.0833688,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43692","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-For":["172.18.0.1"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":1.143638682,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826501.2080162,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"OPTIONS","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Access-Control-Request-Headers":["authorization"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8"],"Access-Control-Request-Method":["GET"],"Sec-Fetch-Site":["same-site"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.005821988,"size":0,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["*"]}} -{"level":"info","ts":1773826501.2162066,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43688","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"OPTIONS","host":"localhost","uri":"/ping","headers":{"Accept":["*/*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Access-Control-Request-Method":["GET"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"Access-Control-Request-Headers":["authorization"],"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.002818669,"size":0,"status":200,"resp_headers":{"Content-Type":["application/json"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["*"],"Server":["Caddy"]}} -{"level":"info","ts":1773826501.3781483,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"55612","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.174063301,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826501.3781526,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43692","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""]}},"bytes_read":0,"user_id":"","duration":0.176308399,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1773826501.378165,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38484","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"]}},"bytes_read":0,"user_id":"","duration":0.174260755,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826501.5183465,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"41354","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"Sec-Gpc":["1"],"Sec-Fetch-Site":["same-site"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":0.313467045,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826501.5187743,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"38470","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.314577812,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1773826501.6968036,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Accept-Language":["en-GB,en;q=0.6"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"]}},"bytes_read":0,"user_id":"","duration":0.486608324,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826502.2942631,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"43684","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Origin":["http://localhost:5173"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":1.090459252,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826502.6856973,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.6"]}},"bytes_read":0,"user_id":"","duration":0.986786982,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826503.1070702,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.18.0.1"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["0b64317da32a"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":0.329633423,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826507.9452004,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":0.330087892,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1773826512.99931,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["0b64317da32a"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":0.545302906,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826518.1475375,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Pragma":["no-cache"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["0b64317da32a"],"X-Forwarded-Host":["localhost"],"Cache-Control":["no-cache"]}},"bytes_read":0,"user_id":"","duration":0.843202642,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"error","ts":1773826523.1225665,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"53894","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["0b64317da32a"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Pragma":["no-cache"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":0.007480931,"size":0,"status":502,"resp_headers":{"Server":["Caddy"]}} -{"level":"info","ts":1773826533.9554763,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"50300","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Cache-Control":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["cf3606ea293b"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":1.158905036,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826536.9338899,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"50300","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/guest/departments?include_lanes=true","headers":{"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Server":["cf3606ea293b"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":2.965340628,"size":735,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1773826538.547151,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"50300","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.910843089,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826543.0969942,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"50300","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["cf3606ea293b"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.629550116,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826547.7162032,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"50300","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["cf3606ea293b"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.395867947,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826554.0806224,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"50300","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["cf3606ea293b"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":0.934719548,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826558.3746915,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"50300","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.379371845,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826561.631695,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"50300","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"Cache-Control":["no-cache"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.377331413,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1773826561.631695,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37072","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["cf3606ea293b"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/"],"X-Forwarded-Prefix":["/api"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.371442491,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1773826561.7586732,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37054","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Host":["localhost"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["cf3606ea293b"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.500663238,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826561.9058926,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37084","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["cf3606ea293b"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"]}},"bytes_read":0,"user_id":"","duration":0.644824932,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826561.9058967,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37092","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["cf3606ea293b"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.6"],"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.64280669,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826561.9065697,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"Referer":["http://localhost:5173/"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.648565892,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826562.008113,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37104","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["cf3606ea293b"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"]}},"bytes_read":0,"user_id":"","duration":0.744631138,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826562.745923,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Language":["en-GB,en;q=0.6"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Server":["cf3606ea293b"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.836964667,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826563.3830287,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"]}},"bytes_read":0,"user_id":"","duration":0.539581044,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826568.1970885,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Real-Ip":["172.18.0.1"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":0.52872221,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826572.8485315,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["cf3606ea293b"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.329632635,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826577.5866983,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.246261041,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826583.649508,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"]}},"bytes_read":0,"user_id":"","duration":0.472560865,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826588.5287206,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["cf3606ea293b"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":0.50213333,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826593.668152,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["cf3606ea293b"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.794128836,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826598.0569248,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":0.3455446,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"]}} -{"level":"info","ts":1773826602.9588246,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["cf3606ea293b"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":0.390555761,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826607.8736682,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Site":["same-site"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.477587811,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826613.8135455,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["cf3606ea293b"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":0.595724596,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826618.519822,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.469573999,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826621.5868504,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"50300","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"],"Cache-Control":["no-cache"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":0.269667338,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826621.5905738,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37084","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["cf3606ea293b"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.273376391,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826621.7035396,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37092","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["cf3606ea293b"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.386524533,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826621.703969,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["cf3606ea293b"]}},"bytes_read":0,"user_id":"","duration":0.388962343,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826621.7040298,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37054","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.386885628,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826621.704212,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37104","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.6"],"Referer":["http://localhost:5173/"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["cf3606ea293b"]}},"bytes_read":0,"user_id":"","duration":0.388677708,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826621.7050414,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37072","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["cf3606ea293b"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.387877353,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826622.5236545,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37072","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.6"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":0.816353161,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826623.0119357,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37072","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["cf3606ea293b"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.108896811,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826628.1503737,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37072","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.398736135,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826633.0426946,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37072","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["cf3606ea293b"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.458874081,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826637.766165,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37072","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["cf3606ea293b"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""]}},"bytes_read":0,"user_id":"","duration":0.344250942,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826643.0986114,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37072","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["cf3606ea293b"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"]}},"bytes_read":0,"user_id":"","duration":0.839096138,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826647.9172235,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37104","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Site":["same-site"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":0.293915662,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"error","ts":1773826648.011681,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37072","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Origin":["http://localhost:5173"],"Sec-Fetch-Site":["same-site"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["cf3606ea293b"]}},"bytes_read":0,"user_id":"","duration":0.388416664,"size":111,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826649.156614,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37054","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/guest/departments?include_lanes=true","headers":{"X-Forwarded-Server":["cf3606ea293b"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":1.486069357,"size":735,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826652.7637017,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37054","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["cf3606ea293b"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.287533254,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1773826657.6192331,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37054","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.18.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["cf3606ea293b"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""]}},"bytes_read":0,"user_id":"","duration":0.304165869,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826662.484209,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37054","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["cf3606ea293b"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"]}},"bytes_read":0,"user_id":"","duration":0.332249171,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Server":["Caddy"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826667.3339016,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37054","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Server":["cf3606ea293b"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.335003003,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826672.4496367,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37054","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Server":["cf3606ea293b"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"Referer":["http://localhost:5173/"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-site"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":0.615472516,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"info","ts":1773826677.9462786,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37054","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Server":["cf3606ea293b"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.284755105,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826681.6040988,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37084","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["cf3606ea293b"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.215791054,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Server":["Caddy"]}} -{"level":"info","ts":1773826681.604095,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37072","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Server":["cf3606ea293b"]}},"bytes_read":0,"user_id":"","duration":0.219227531,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826681.6041782,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37054","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"X-Forwarded-Server":["cf3606ea293b"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":0.220043092,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826681.7778602,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.6"],"Authorization":[],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.391469649,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826681.7804117,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"50300","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Pragma":["no-cache"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["cf3606ea293b"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.391671889,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826681.7854679,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37092","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["cf3606ea293b"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.398119439,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1773826682.2771666,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.6"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["cf3606ea293b"],"X-Real-Ip":["172.18.0.1"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.496209609,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1773826682.2781265,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37104","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Sec-Fetch-Site":["same-site"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.893277484,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826683.178707,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37104","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.663738661,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"info","ts":1773826688.3381941,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37104","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Server":["cf3606ea293b"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.989881721,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"error","ts":1773826688.52026,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["cf3606ea293b"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"]}},"bytes_read":0,"user_id":"","duration":0.517618677,"size":111,"status":401,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"info","ts":1773826689.0678031,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37092","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["cf3606ea293b"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":1.064311318,"size":101,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1773826689.8285036,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"50300","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/guest/departments?include_lanes=true","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["cf3606ea293b"]}},"bytes_read":0,"user_id":"","duration":1.804908345,"size":735,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1773826693.5957835,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"50300","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.750935948,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"error","ts":1773826697.3757653,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"50300","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/departments","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Origin":["http://localhost:5173"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":0.293729729,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} -{"level":"error","ts":1773826697.3757768,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37092","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"Sec-Gpc":["1"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["cf3606ea293b"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.293211565,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} -{"level":"error","ts":1773826697.7717874,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/guest/departments?include_lanes=true","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-site"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"]}},"bytes_read":0,"user_id":"","duration":0.666268221,"size":72,"status":404,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"error","ts":1773826701.5105367,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"50300","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"Authorization":[],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.6"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Server":["cf3606ea293b"]}},"bytes_read":0,"user_id":"","duration":0.53491044,"size":72,"status":404,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"error","ts":1773826701.7883804,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37092","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/auth/reCAPTCHA/public","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.6"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Prefix":["/api"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["cf3606ea293b"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.816917711,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} -{"level":"error","ts":1773826701.853436,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"50300","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.6"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Server":["cf3606ea293b"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Site":["same-site"]}},"bytes_read":0,"user_id":"","duration":0.339505529,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1773826701.8538113,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37054","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/auth/session","headers":{"Origin":["http://localhost:5173"],"Sec-Fetch-Site":["same-site"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.6"],"Referer":["http://localhost:5173/"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["cf3606ea293b"]}},"bytes_read":0,"user_id":"","duration":0.877614488,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1773826701.984547,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"35502","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/guest/departments?include_lanes=true","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"X-Forwarded-Server":["cf3606ea293b"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"]}},"bytes_read":0,"user_id":"","duration":0.172874076,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"]}} -{"level":"error","ts":1773826702.0168717,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37054","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/auth/session","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["cf3606ea293b"],"Accept-Language":["en-GB,en;q=0.6"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.159969922,"size":72,"status":404,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"error","ts":1773826702.242746,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/departments","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.6"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Port":["80"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-For":["172.18.0.1"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["cf3606ea293b"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"]}},"bytes_read":0,"user_id":"","duration":1.295959827,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"error","ts":1773826702.3069026,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37072","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/departments","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.577721038,"size":72,"status":404,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"error","ts":1773826702.350668,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37092","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/auth/reCAPTCHA/public","headers":{"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["cf3606ea293b"],"Accept-Language":["en-GB,en;q=0.6"],"Origin":["http://localhost:5173"]}},"bytes_read":0,"user_id":"","duration":0.555174873,"size":72,"status":404,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1773826702.8036997,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/departments","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.6"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Authorization":[],"Origin":["http://localhost:5173"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["cf3606ea293b"]}},"bytes_read":0,"user_id":"","duration":0.557892356,"size":72,"status":404,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"error","ts":1773826702.8073766,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37084","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["cf3606ea293b"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":1.077441848,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1773826703.4966028,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37084","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["cf3606ea293b"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":0.684978633,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"error","ts":1773826708.0270803,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37084","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.6"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Authorization":[],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.486951214,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"error","ts":1773826708.3696883,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Server":["cf3606ea293b"],"X-Real-Ip":["172.18.0.1"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":0.60697834,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1773826708.5068195,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37084","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Authorization":[],"Origin":["http://localhost:5173"],"Accept-Language":["en-GB,en;q=0.6"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":0.476434872,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} -{"level":"error","ts":1773826708.6845531,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37084","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["cf3606ea293b"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.17228174,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} -{"level":"error","ts":1773826713.0960047,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37084","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Accept-Language":["en-GB,en;q=0.6"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["cf3606ea293b"],"Origin":["http://localhost:5173"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":0.704865696,"size":72,"status":404,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.30"],"Server":["Caddy"]}} -{"level":"error","ts":1773826713.2229595,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["cf3606ea293b"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":0.607684269,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1773826713.5119667,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["cf3606ea293b"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-site"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":0.163409461,"size":72,"status":404,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"error","ts":1773826713.7476597,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37084","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Server":["cf3606ea293b"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.6"],"Authorization":[],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":0.648740312,"size":72,"status":404,"resp_headers":{"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"error","ts":1773826717.6552675,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["cf3606ea293b"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.195128913,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"error","ts":1773826717.6557715,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37084","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en;q=0.6"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Server":["cf3606ea293b"]}},"bytes_read":0,"user_id":"","duration":0.429146662,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} -{"level":"error","ts":1773826718.6928694,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["cf3606ea293b"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.496269746,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"error","ts":1773826718.6936173,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37084","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-site"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.6"],"Authorization":[],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":1.035254318,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1773826722.7025964,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37084","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"Sec-Fetch-Site":["same-site"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.6"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Authorization":[],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Server":["cf3606ea293b"]}},"bytes_read":0,"user_id":"","duration":0.621774556,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"]}} -{"level":"error","ts":1773826723.3734825,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37092","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.338516843,"size":72,"status":404,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"error","ts":1773826723.3745852,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37084","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Site":["same-site"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.6"],"Origin":["http://localhost:5173"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["cf3606ea293b"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.667566008,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"error","ts":1773826723.4913466,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.18.0.1"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["cf3606ea293b"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":1.187267605,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"]}} -{"level":"error","ts":1773826727.4152093,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.6"],"Sec-Gpc":["1"],"X-Forwarded-Server":["cf3606ea293b"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":0.497147953,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"error","ts":1773826727.8890858,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37084","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["cf3606ea293b"]}},"bytes_read":0,"user_id":"","duration":0.747295957,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} -{"level":"error","ts":1773826728.1730373,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["cf3606ea293b"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.6"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":0.754468923,"size":72,"status":404,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["*"]}} -{"level":"error","ts":1773826728.6366873,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37092","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"X-Forwarded-For":["172.18.0.1"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["cf3606ea293b"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.746952708,"size":72,"status":404,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1773826732.221285,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37092","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"X-Forwarded-For":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Server":["cf3606ea293b"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-site"],"X-Real-Ip":["172.18.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["en-GB,en;q=0.6"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/"]}},"bytes_read":0,"user_id":"","duration":0.456508601,"size":72,"status":404,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"]}} -{"level":"error","ts":1773826732.2212849,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.18.0.1"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["cf3606ea293b"]}},"bytes_read":0,"user_id":"","duration":0.234413772,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} -{"level":"error","ts":1773826732.912765,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37058","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"Referer":["http://localhost:5173/"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["cf3606ea293b"],"X-Real-Ip":["172.18.0.1"],"Authorization":[],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.6"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-site"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":0.687789355,"size":72,"status":404,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1773826733.4827838,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"37092","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/:4433/ping","headers":{"Accept":["application/json, text/plain, */*"],"Origin":["http://localhost:5173"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"146\", \"Not-A.Brand\";v=\"24\", \"Brave\";v=\"146\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-site"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["cf3606ea293b"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":0.752769145,"size":72,"status":404,"resp_headers":{"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1774359410.7662385,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"42848","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["4513febd0e98"]}},"bytes_read":0,"user_id":"","duration":1.419261331,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1774359411.8936794,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"42848","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip"],"X-Forwarded-Server":["4513febd0e98"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":1.095823154,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1774359413.4743714,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"42848","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["4513febd0e98"],"Accept-Encoding":["gzip"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":1.569025749,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1774359414.9427295,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"42848","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["4513febd0e98"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":1.453042866,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1774359416.5113647,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"42848","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["4513febd0e98"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":1.555332673,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1774359417.9860232,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"42848","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["4513febd0e98"],"Accept-Encoding":["gzip"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":1.45695831,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1774359418.5943637,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"42848","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["4513febd0e98"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip"]}},"bytes_read":0,"user_id":"","duration":0.595441308,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1774359419.6813276,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"42848","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-Server":["4513febd0e98"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":1.075013274,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1774359428.338712,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["4513febd0e98"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-For":["172.18.0.1"],"Accept-Encoding":["gzip"]}},"bytes_read":0,"user_id":"","duration":0.910140374,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1774359429.22114,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["4513febd0e98"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip"]}},"bytes_read":0,"user_id":"","duration":0.862201927,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1774359429.1707215,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["4513febd0e98"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":1.389081049,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1774359429.3823278,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["4513febd0e98"],"Accept-Encoding":["gzip"]}},"bytes_read":0,"user_id":"","duration":0.194319251,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1774359430.8409362,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["4513febd0e98"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":1.437162491,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1774359431.0736253,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["4513febd0e98"]}},"bytes_read":0,"user_id":"","duration":0.21548384,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1774359432.5463028,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["4513febd0e98"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip"],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":1.457021421,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1774359433.1541202,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["4513febd0e98"],"Accept-Encoding":["gzip"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.593640533,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1774359433.7735548,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["4513febd0e98"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip"]}},"bytes_read":0,"user_id":"","duration":0.604391296,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1774359434.523004,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["4513febd0e98"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip"]}},"bytes_read":0,"user_id":"","duration":0.735703774,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1774359435.3819067,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["4513febd0e98"]}},"bytes_read":0,"user_id":"","duration":0.841783131,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1774359436.0587533,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["4513febd0e98"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.65987697,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1774359436.7292738,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["4513febd0e98"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.654426603,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1774359437.4872267,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Server":["4513febd0e98"],"Accept-Encoding":["gzip"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.737746322,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"]}} -{"level":"info","ts":1774359438.1417146,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["4513febd0e98"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":0.638910553,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1774359438.9001129,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["4513febd0e98"]}},"bytes_read":0,"user_id":"","duration":0.744432539,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1774359439.7426257,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["4513febd0e98"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip"]}},"bytes_read":0,"user_id":"","duration":0.820541924,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1774359440.5554748,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["4513febd0e98"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"]}},"bytes_read":0,"user_id":"","duration":0.798630689,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1774359441.0909092,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["4513febd0e98"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"]}},"bytes_read":0,"user_id":"","duration":0.522440142,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1774359441.87296,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["4513febd0e98"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0.768554371,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1774359451.9496348,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/guest/departments?include_lanes=true","headers":{"X-Forwarded-Server":["4513febd0e98"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip"]}},"bytes_read":0,"user_id":"","duration":3.16841118,"size":735,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1774359454.7461386,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/guest/departments?include_lanes=true","headers":{"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["4513febd0e98"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip"],"X-Forwarded-For":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":2.771633599,"size":735,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1774359456.8014095,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/guest/departments?include_lanes=true","headers":{"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip"],"X-Forwarded-Server":["4513febd0e98"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":2.043545388,"size":735,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1774359458.8112676,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/guest/departments?include_lanes=true","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["4513febd0e98"],"Accept-Encoding":["gzip"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":1.997627811,"size":735,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1774359460.0082002,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/guest/departments?include_lanes=true","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["4513febd0e98"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"]}},"bytes_read":0,"user_id":"","duration":2.719624341,"size":735,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1774359462.1559546,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/guest/departments?include_lanes=true","headers":{"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["4513febd0e98"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.129318162,"size":735,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.30"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1774359464.0260193,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/guest/departments?include_lanes=true","headers":{"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["4513febd0e98"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.18.0.1"]}},"bytes_read":0,"user_id":"","duration":1.858119212,"size":735,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1774359466.158465,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/guest/departments?include_lanes=true","headers":{"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Real-Ip":["172.18.0.1"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["4513febd0e98"],"Accept-Encoding":["gzip"]}},"bytes_read":0,"user_id":"","duration":2.120016812,"size":735,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1774359468.6958492,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/guest/departments?include_lanes=true","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["4513febd0e98"],"Accept-Encoding":["gzip"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.18.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.523297017,"size":735,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1774359470.677206,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.6","remote_port":"53830","client_ip":"172.18.0.6","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/guest/departments?include_lanes=true","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.18.0.1"],"Accept-Encoding":["gzip"],"X-Forwarded-Server":["4513febd0e98"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.7920"],"X-Forwarded-For":["172.18.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":1.968647671,"size":735,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1775042310.766326,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"49692","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"caddy","uri":"/economic/payment-terms","headers":{"User-Agent":["curl/8.14.1"],"Accept":["*/*"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":2.173924739,"size":2514,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1775042310.819993,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"49690","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"caddy","uri":"/economic/layouts","headers":{"User-Agent":["curl/8.14.1"],"Accept":["*/*"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":2.227691681,"size":721,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1775042311.5330641,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"49706","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"caddy","uri":"/economic/config","headers":{"User-Agent":["curl/8.14.1"],"Accept":["*/*"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":2.692967287,"size":604,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.30"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1775042615.6337473,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.18.0.5","remote_port":"54866","client_ip":"172.18.0.5","proto":"HTTP/1.1","method":"GET","host":"caddy","uri":"/customers?page=1&limit=100","headers":{"User-Agent":["curl/8.14.1"],"Accept":["*/*"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":10.029899933,"size":164529,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776959935.0136516,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.7","remote_port":"58850","client_ip":"172.20.0.7","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["b3e291cb2d19"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["node"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.658146272,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776960027.8796778,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.7","remote_port":"47620","client_ip":"172.20.0.7","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Prefix":["/api"],"Accept":["*/*"],"Accept-Language":["*"],"X-Forwarded-Port":["80"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["b3e291cb2d19"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":1.888361033,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776960044.7089422,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.7","remote_port":"47620","client_ip":"172.20.0.7","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/install-token","headers":{"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"X-Forwarded-Host":["localhost"],"User-Agent":["node"],"X-Forwarded-For":["172.20.0.1"],"Content-Length":["58"],"Authorization":[],"X-Forwarded-Port":["80"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["b3e291cb2d19"]}},"bytes_read":58,"user_id":"","duration":12.111023805,"size":423,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776960046.8671541,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.7","remote_port":"47620","client_ip":"172.20.0.7","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["*/*"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["b3e291cb2d19"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"X-Forwarded-Prefix":["/api"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"]}},"bytes_read":0,"user_id":"","duration":2.075225561,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776960384.3035934,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"52036","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"User-Agent":["node"],"Accept":["*/*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":1.494509193,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776960399.9506564,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"52036","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/install-token","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Content-Type":["application/json"],"X-Forwarded-Host":["localhost"],"User-Agent":["node"],"Content-Length":["58"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["153105acad2c"]}},"bytes_read":58,"user_id":"","duration":10.862781966,"size":423,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776960514.8152742,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"35938","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept":["*/*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"User-Agent":["node"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.189702502,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776960535.4888632,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"35938","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept":["*/*"]}},"bytes_read":0,"user_id":"","duration":1.792757422,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} -{"level":"info","ts":1776960551.116971,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"35938","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/install-token","headers":{"Accept":["*/*"],"User-Agent":["node"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["58"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["153105acad2c"]}},"bytes_read":58,"user_id":"","duration":11.313665222,"size":423,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776960553.3616152,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"35938","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate"],"User-Agent":["node"],"Accept-Language":["*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"]}},"bytes_read":0,"user_id":"","duration":2.161273126,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776960604.1298053,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"35938","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"Accept-Language":["*"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.152616391,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776960619.4155648,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"35938","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/install-token","headers":{"Content-Length":["58"],"Accept-Language":["*"],"Content-Type":["application/json"],"X-Forwarded-Port":["80"],"Accept":["*/*"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Authorization":[],"Sec-Fetch-Mode":["cors"]}},"bytes_read":58,"user_id":"","duration":10.537668939,"size":423,"status":201,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["201 Created"]}} -{"level":"info","ts":1776960620.9861505,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"35938","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["153105acad2c"],"Accept-Language":["*"],"X-Forwarded-Prefix":["/api"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":0,"user_id":"","duration":1.493012533,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776960654.6706445,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"35938","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-agent/claim","headers":{"User-Agent":["node"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Content-Length":["187"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Port":["80"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":187,"user_id":"","duration":19.198510635,"size":1638,"status":201,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776960657.6693451,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59124","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/83/logs","headers":{"Content-Length":["181"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":181,"user_id":"","duration":2.506315717,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776960682.7458186,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"35938","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/83","headers":{"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"User-Agent":["node"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"Accept":["*/*"],"X-Real-Ip":["172.20.0.1"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":13.367396833,"size":1460,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776960691.2363768,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"35938","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/83","headers":{"Accept":["*/*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["node"],"Authorization":[],"X-Forwarded-Server":["153105acad2c"]}},"bytes_read":0,"user_id":"","duration":7.970436268,"size":1460,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776960706.317996,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"35938","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/83","headers":{"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"Accept":["*/*"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":14.568516518,"size":1527,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776960714.0360365,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"35938","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/83","headers":{"User-Agent":["node"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Prefix":["/api"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"Accept-Language":["*"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":7.214579009,"size":1527,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776960727.9359303,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"35938","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/83","headers":{"X-Forwarded-Prefix":["/api"],"Accept":["*/*"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Proto":["http"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["153105acad2c"],"Accept-Language":["*"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":13.393350897,"size":1527,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776960735.8303728,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"35938","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/83","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip, deflate"],"Authorization":[],"X-Forwarded-Host":["localhost"],"Accept-Language":["*"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":7.376822393,"size":1527,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776960752.3474884,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"35938","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"DELETE","host":"localhost","uri":"/edge-gateways/83","headers":{"Authorization":[],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"User-Agent":["node"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":16.00079995,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776960792.0832589,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"35938","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/install-token","headers":{"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Content-Type":["application/json"],"X-Forwarded-Server":["153105acad2c"],"Content-Length":["75"],"Authorization":[],"Expect":["100-continue"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.8115"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip"]}},"bytes_read":75,"user_id":"","duration":10.96911212,"size":423,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776960798.2932289,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"35938","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["*"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"]}},"bytes_read":0,"user_id":"","duration":1.256939362,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776960818.9935644,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"35938","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-agent/claim","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["*"],"X-Forwarded-Server":["153105acad2c"],"Content-Length":["187"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Content-Type":["application/json"]}},"bytes_read":187,"user_id":"","duration":19.987952297,"size":1643,"status":201,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Status":["201 Created"]}} -{"level":"error","ts":1776960821.2661617,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52652","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["181"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":181,"user_id":"","duration":1.830508664,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776960852.2955067,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"35938","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/84","headers":{"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.8115"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"]}},"bytes_read":0,"user_id":"","duration":14.75419803,"size":1464,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776960988.0919237,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"32846","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Accept":["*/*"],"User-Agent":["node"],"X-Forwarded-Server":["153105acad2c"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"]}},"bytes_read":0,"user_id":"","duration":2.117852543,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961005.528637,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"32846","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/install-token","headers":{"X-Forwarded-Prefix":["/api"],"X-Forwarded-Host":["localhost"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Content-Length":["58"],"Accept-Language":["*"],"Content-Type":["application/json"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"]}},"bytes_read":58,"user_id":"","duration":12.490573094,"size":423,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961007.8328075,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"32846","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["node"],"Accept-Language":["*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"Accept":["*/*"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":2.222109108,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} -{"level":"info","ts":1776961031.2079418,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"32846","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-agent/claim","headers":{"Accept":["*/*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"Content-Length":["187"],"Content-Type":["application/json"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["153105acad2c"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"X-Forwarded-Prefix":["/api"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":187,"user_id":"","duration":22.164195992,"size":1637,"status":201,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"error","ts":1776961033.8977907,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39932","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/85/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["181"]}},"bytes_read":181,"user_id":"","duration":2.291625318,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961052.7654622,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"32846","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/85","headers":{"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"X-Forwarded-Proto":["http"],"Accept":["*/*"],"Authorization":[],"X-Forwarded-Host":["localhost"],"User-Agent":["node"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":7.574930239,"size":1459,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776961060.703683,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"32846","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/85","headers":{"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"]}},"bytes_read":0,"user_id":"","duration":7.431271338,"size":1459,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776961069.9281616,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"32846","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/85","headers":{"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"]}},"bytes_read":0,"user_id":"","duration":8.704986549,"size":1459,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776961105.2091532,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"32846","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/85","headers":{"Accept-Language":["*"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":34.719451639,"size":1525,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776961121.8697255,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"32846","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"DELETE","host":"localhost","uri":"/edge-gateways/85","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"Authorization":[],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":16.155669446,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776961346.7233298,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36164","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.817309054,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961368.103338,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46708","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.1935914,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961395.4360914,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37186","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2765"]}},"bytes_read":2765,"user_id":"","duration":15.7017655,"size":6943,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961422.396913,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59064","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.957878844,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961444.0277526,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37438","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":26.583827935,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961445.7202373,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43470","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":6.251244995,"size":172,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776961459.5649557,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46762","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["node"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["*"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":1.947012578,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961472.0659523,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59412","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2674"]}},"bytes_read":2674,"user_id":"","duration":15.603139528,"size":6852,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961474.5630393,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46762","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/install-token","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Content-Length":["58"],"Accept-Language":["*"],"Content-Type":["application/json"],"X-Forwarded-Port":["80"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":58,"user_id":"","duration":10.775435814,"size":423,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961475.8958657,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46762","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["node"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept-Language":["*"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["153105acad2c"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":1.258371561,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961498.8747478,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"35450","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.797306497,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961503.275232,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46762","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-agent/claim","headers":{"Accept-Language":["*"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["153105acad2c"],"Accept":["*/*"],"Content-Length":["187"],"X-Forwarded-Host":["localhost"],"User-Agent":["node"]}},"bytes_read":187,"user_id":"","duration":25.871131228,"size":1640,"status":201,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["201 Created"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776961506.0484557,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39592","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/86/logs","headers":{"Content-Length":["181"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":181,"user_id":"","duration":2.37840697,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776961512.130003,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"45310","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/86/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.073493387,"size":173,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961521.6904771,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46220","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":27.604755814,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776961522.2124703,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"45310","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"User-Agent":["node"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":6.127545638,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961538.2152956,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51236","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/86/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2548"]}},"bytes_read":2548,"user_id":"","duration":15.604196217,"size":6694,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961546.583303,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46762","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/86","headers":{"User-Agent":["node"],"X-Forwarded-Server":["153105acad2c"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"Authorization":[],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":7.73662657,"size":1979,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776961548.242677,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37860","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2662"]}},"bytes_read":2662,"user_id":"","duration":15.374274486,"size":6830,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961560.9621542,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46762","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/86/stream-session","headers":{"Content-Length":["51"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"X-Forwarded-Proto":["http"],"Accept-Language":["*"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["153105acad2c"]}},"bytes_read":51,"user_id":"","duration":14.372920875,"size":478,"status":201,"resp_headers":{"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"error","ts":1776961562.2950623,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"36762","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-broker/ws/browser-gateway-stream?token=eyJzZXNzaW9uX3R5cGUiOiJnYXRld2F5LXN0cmVhbSIsImdhdGV3YXlfaWQiOjg2LCJkZXBhcnRtZW50X2lkIjoxMTYwLCJ1c2VyX2lkIjo1NTQzLCJzY29wZXMiOlsib3ZlcnZpZXciLCJ0YXNrcyIsImxvZ3MiLCJzdGF0aXN0aWNzIl0sImV4cCI6MTc3Njk2MTg2MCwiaWF0IjoxNzc2OTYxNTYwLCJqdGkiOiI2ZjUwZDdjYTM2MDZlZWU5NmE1MjM2Y2IifQ.0qbBE2YpNKjfgyIENNAvp7gXJQDScXSfgIP1ahxlOoE","headers":{"Accept-Language":["*"],"Connection":["Upgrade"],"Sec-Websocket-Extensions":["permessage-deflate; client_max_window_bits"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["node"],"Sec-Fetch-Mode":["websocket"],"Upgrade":["websocket"],"X-Forwarded-Port":["80"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Sec-Websocket-Version":["13"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Websocket-Key":["sTZcCt0p8492FVh0tatw/w=="],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["ws"]}},"bytes_read":0,"user_id":"","duration":1.328507045,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776961564.8115304,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44312","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/86/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.583333495,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776961572.6334612,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46762","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"DELETE","host":"localhost","uri":"/edge-gateways/86","headers":{"User-Agent":["node"],"X-Forwarded-Server":["153105acad2c"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"Authorization":[],"X-Forwarded-Prefix":["/api"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":10.330729923,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776961574.580485,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45534","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.322367366,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961587.588049,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40460","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/86/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":27.34832554,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961596.0386035,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60768","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":25.789031767,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961598.761648,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"48274","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":6.505046235,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961626.608265,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"55116","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2672"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2672,"user_id":"","duration":17.083434849,"size":6850,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961627.5019248,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46762","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/84","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["153105acad2c"],"Accept-Encoding":["gzip"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.8115"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":16.912022261,"size":1995,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776961628.5303042,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"54330","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/84/stream-session","headers":{"Content-Type":["application/json"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.8115"],"Expect":["100-continue"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Content-Length":["51"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["153105acad2c"]}},"bytes_read":51,"user_id":"","duration":17.939089408,"size":479,"status":201,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["201 Created"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776961634.7112777,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"54338","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/84/shell-sessions","headers":{"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.8115"],"X-Real-Ip":["172.20.0.1"],"Content-Length":["73"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip"],"Content-Type":["application/json"],"Expect":["100-continue"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":73,"user_id":"","duration":24.091039665,"size":440,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776961654.1951065,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46974","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":27.580321036,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961675.2485752,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37478","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":26.62335565,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961677.1910305,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"49722","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.569305471,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776961707.2436485,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52812","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2664"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2664,"user_id":"","duration":19.84393884,"size":7066,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776961734.1916037,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"48486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Length":["163"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":163,"user_id":"","duration":26.935287373,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776961755.6880069,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44162","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.422125957,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961757.969152,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54664","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":6.7100045,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961784.5786889,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52128","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2667"],"Accept":["application/json"]}},"bytes_read":2667,"user_id":"","duration":16.298095552,"size":7079,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961811.5573053,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"35876","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.974512795,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961834.2883115,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"53004","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":27.69722196,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961834.6590683,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46454","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.061487628,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961862.7938447,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"55478","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2663"]}},"bytes_read":2663,"user_id":"","duration":17.395036159,"size":7065,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961888.9548156,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47180","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":26.150547213,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961911.1108446,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46478","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.29743602,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961913.298006,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"51830","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"]}},"bytes_read":76,"user_id":"","duration":6.489953161,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776961939.8464987,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39300","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2662"]}},"bytes_read":2662,"user_id":"","duration":16.49417379,"size":7064,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961966.6884584,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"53848","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.840095848,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961989.1180346,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35988","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.266484388,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776961990.0466192,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33426","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":28.201566782,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} -{"level":"info","ts":1776962017.8570266,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"54286","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2661"]}},"bytes_read":2661,"user_id":"","duration":16.953595419,"size":7063,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962044.6152818,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36512","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Length":["163"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":163,"user_id":"","duration":26.746860993,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962066.4414558,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44332","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.564903529,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962068.4611108,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58922","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":6.589252446,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776962095.7781205,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45700","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2672"]}},"bytes_read":2672,"user_id":"","duration":16.627100824,"size":7084,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962122.5714927,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56616","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.788437833,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962144.7453315,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39164","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.974113395,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962147.3750389,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58568","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":7.601659738,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962174.624553,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"48824","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2663"]}},"bytes_read":2663,"user_id":"","duration":18.088468641,"size":7065,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962201.7391665,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45580","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":27.110193089,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776962223.6980674,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50784","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":27.065279107,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776962224.381564,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44314","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.732739374,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962252.2553744,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57734","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2662"]}},"bytes_read":2662,"user_id":"","duration":16.842464528,"size":7064,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962280.4441264,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52136","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":28.178069718,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962299.712255,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50206","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":25.440732242,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962302.1453278,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"57980","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":5.882935975,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776962346.2121046,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56546","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":12.235538885,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776962357.4949982,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58038","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2673"]}},"bytes_read":2673,"user_id":"","duration":43.872948514,"size":7085,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776962388.917252,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50428","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":45.280900766,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962397.842778,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"37706","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":8.769306015,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962409.693425,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"55738","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":44.124112951,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776962413.7800763,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59390","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":0.96463071,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962414.8134723,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59304","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2673"]}},"bytes_read":2673,"user_id":"","duration":21.99321353,"size":7085,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962430.1791706,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46140","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2673"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2673,"user_id":"","duration":16.145124783,"size":7085,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962436.375027,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40238","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.192387594,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962466.7596343,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"55332","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2810"]}},"bytes_read":2810,"user_id":"","duration":20.02522613,"size":7370,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776962468.8665693,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37042","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":2.132481481,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776962496.2478602,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37054","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":27.372291493,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776962518.0050118,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"55252","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":27.11888648,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776962518.5575612,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54010","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":5.672550452,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776962537.1267958,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50278","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2810"]}},"bytes_read":2810,"user_id":"","duration":19.228230194,"size":7370,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962543.414859,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34704","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Connection":["keep-alive"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":6.029945409,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962569.7989774,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49354","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2808"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2808,"user_id":"","duration":15.835835222,"size":7368,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962596.6321766,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43304","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.82215676,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962617.3511515,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47416","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":25.548236042,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962620.3722,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"51646","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":6.567531556,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962648.7710745,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46040","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2806"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2806,"user_id":"","duration":18.125873521,"size":7366,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962676.0626404,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46576","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":27.277210758,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962698.169255,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40294","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":27.372252358,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776962704.156723,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34160","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["76"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":11.349139735,"size":172,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776962725.9896898,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52770","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2809"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2809,"user_id":"","duration":16.079400176,"size":7369,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962752.2292392,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39190","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.235350728,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962774.5114844,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60842","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.512438569,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776962776.4023132,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40766","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.408938152,"size":172,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776962803.7969272,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2817"]}},"bytes_read":2817,"user_id":"","duration":16.785840996,"size":7387,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776962831.3739617,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60674","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":27.563766149,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776962852.270277,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43592","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.44894395,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776962854.052212,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41612","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":6.225001528,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962880.5328224,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59046","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2803"]}},"bytes_read":2803,"user_id":"","duration":15.908864255,"size":7363,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962907.5176015,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36506","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.973582303,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776962928.9801598,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"48622","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.431324186,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962931.102963,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42730","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":6.563316495,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776962956.3813086,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37598","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2807"]}},"bytes_read":2807,"user_id":"","duration":15.08605566,"size":7367,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776962983.3057837,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41540","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.919177734,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963005.2103324,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44554","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.818757372,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776963006.9947662,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50446","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":6.599428591,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963032.5640762,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58760","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2806"],"Accept":["application/json"]}},"bytes_read":2806,"user_id":"","duration":15.385163018,"size":7366,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963058.6380215,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60506","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.068873301,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776963080.9709682,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40550","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.396199724,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776963082.5449069,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44460","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["76"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.978008747,"size":172,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776963109.3860815,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40454","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2808"],"Accept":["application/json"]}},"bytes_read":2808,"user_id":"","duration":15.772371131,"size":7368,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776963137.2886631,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45984","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":27.899126337,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963159.7663445,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"36106","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":6.424579148,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963160.9515202,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49414","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":29.564512497,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776963185.8947906,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57360","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2807"]}},"bytes_read":2807,"user_id":"","duration":15.712965252,"size":7367,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963212.8220856,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51536","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.919714247,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} -{"level":"info","ts":1776963233.8547068,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58352","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":25.953962266,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963235.8982034,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38456","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":5.989064432,"size":172,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776963262.4987707,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45628","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2809"]}},"bytes_read":2809,"user_id":"","duration":15.812634726,"size":7369,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963288.1015093,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"55938","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":25.593811757,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776963310.6735206,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45782","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":26.175692718,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776963312.2022572,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"55702","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":5.698833548,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963344.8198392,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43582","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2815"],"Accept":["application/json"]}},"bytes_read":2815,"user_id":"","duration":21.274795942,"size":7385,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776963345.5078866,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39898","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":1.973240402,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963373.118976,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39912","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":27.60930185,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963394.0258634,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49266","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":26.412285811,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776963395.6075177,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41818","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":6.273365585,"size":172,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776963410.632477,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59984","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2815"]}},"bytes_read":2815,"user_id":"","duration":16.245695998,"size":7385,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963416.4697456,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54624","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"User-Agent":["node"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":5.579687207,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963443.3182495,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37174","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2811"]}},"bytes_read":2811,"user_id":"","duration":15.85387793,"size":7371,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963469.0332167,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60526","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":25.695327819,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776963491.5400546,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43614","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.224720907,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963493.2352567,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40868","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.92612012,"size":172,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"error","ts":1776963506.7918231,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36042","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2809"]}},"bytes_read":2809,"user_id":"","duration":2.706208223,"size":112,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963507.8962154,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36058","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["675"]}},"bytes_read":675,"user_id":"","duration":1.102769086,"size":497,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["text/html; charset=UTF-8"]}} -{"level":"info","ts":1776963508.9082973,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36060","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":1.010746338,"size":498,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["text/html; charset=UTF-8"]}} -{"level":"info","ts":1776963510.162034,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36076","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["255"]}},"bytes_read":255,"user_id":"","duration":1.251940502,"size":497,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["text/html; charset=UTF-8"]}} -{"level":"info","ts":1776963511.2686536,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36090","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":1.104684876,"size":498,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["text/html; charset=UTF-8"]}} -{"level":"info","ts":1776963512.0564582,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36102","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["251"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":251,"user_id":"","duration":0.786195902,"size":497,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["text/html; charset=UTF-8"]}} -{"level":"info","ts":1776963512.954114,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40474","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":0.894991681,"size":497,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["text/html; charset=UTF-8"]}} -{"level":"info","ts":1776963520.4073162,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40488","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/backlog","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["64"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":64,"user_id":"","duration":7.442526844,"size":139,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963523.8007104,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"54884","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"Accept":["*/*"],"Accept-Language":["*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":1.696328672,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963526.1902556,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40502","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/presence","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Accept":["*/*"],"Content-Length":["205"]}},"bytes_read":205,"user_id":"","duration":13.213641801,"size":288,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963526.1914582,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40474","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2728"]}},"bytes_read":2728,"user_id":"","duration":13.219875755,"size":2210,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776963540.1726124,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"54884","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/install-token","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Proto":["http"],"Content-Type":["application/json"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["node"],"Accept":["*/*"],"Accept-Language":["*"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["153105acad2c"],"Content-Length":["58"],"Authorization":[],"X-Forwarded-Host":["localhost"]}},"bytes_read":58,"user_id":"","duration":11.526071055,"size":423,"status":201,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776963540.4137962,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"59076","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Content-Length":["2976"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2976,"user_id":"","duration":15.585347441,"size":2360,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776963542.7298381,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"54884","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["*"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":2.479734637,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963558.388234,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44010","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2975"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"]}},"bytes_read":2975,"user_id":"","duration":17.562290077,"size":2374,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776963566.3800504,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"54884","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-agent/claim","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Content-Type":["application/json"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"Content-Length":["187"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":187,"user_id":"","duration":21.537576967,"size":1635,"status":201,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776963568.989809,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59464","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/103/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["181"]}},"bytes_read":181,"user_id":"","duration":2.135777361,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963573.1872272,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40086","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2969"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2969,"user_id":"","duration":16.384597048,"size":2379,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776963575.6846683,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43776","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/103/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.680279746,"size":175,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776963590.0820308,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43786","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Length":["2972"],"Connection":["keep-alive"]}},"bytes_read":2972,"user_id":"","duration":17.229457912,"size":2379,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963601.4799874,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41344","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/103/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2548"]}},"bytes_read":2548,"user_id":"","duration":16.145394752,"size":6696,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776963602.0920696,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"45948","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2974"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2974,"user_id":"","duration":14.978307779,"size":2379,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776963609.2212489,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"54884","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/103","headers":{"User-Agent":["node"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Authorization":[],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":7.683784754,"size":1978,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776963618.973718,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"45948","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"User-Agent":["node"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2968"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":2968,"user_id":"","duration":15.156184399,"size":2307,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776963624.3995852,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"54884","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/103/stream-session","headers":{"Content-Type":["application/json"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["node"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Content-Length":["51"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["153105acad2c"],"Accept-Language":["*"],"Authorization":[]}},"bytes_read":51,"user_id":"","duration":15.156570323,"size":484,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776963625.994403,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"58772","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-broker/ws/browser-gateway-stream?token=eyJzZXNzaW9uX3R5cGUiOiJnYXRld2F5LXN0cmVhbSIsImdhdGV3YXlfaWQiOjEwMywiZGVwYXJ0bWVudF9pZCI6MTE3NywidXNlcl9pZCI6NTU1OSwic2NvcGVzIjpbIm92ZXJ2aWV3IiwidGFza3MiLCJsb2dzIiwic3RhdGlzdGljcyJdLCJleHAiOjE3NzY5NjM5MjQsImlhdCI6MTc3Njk2MzYyNCwianRpIjoiZjkxYWFhMjQ1NTRlNDFiN2IxMjQyNjlkIn0.yKwIU16J-HYZnVZoeOJq1A6-OyJrgVjRTmW1gkUVycM","headers":{"Cache-Control":["no-cache"],"Sec-Websocket-Extensions":["permessage-deflate; client_max_window_bits"],"Accept-Language":["*"],"Sec-Fetch-Mode":["websocket"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["153105acad2c"],"Sec-Websocket-Version":["13"],"X-Forwarded-Proto":["ws"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["Upgrade"],"Sec-Websocket-Key":["A3T6nK/xT29yyscPJCbHzw=="],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Pragma":["no-cache"],"Upgrade":["websocket"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":1.590631988,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776963627.4508836,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50394","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/103/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":25.951049918,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963634.2849722,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"45948","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2969"]}},"bytes_read":2969,"user_id":"","duration":14.510302502,"size":2299,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776963636.2131367,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"54884","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"DELETE","host":"localhost","uri":"/edge-gateways/103","headers":{"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"X-Forwarded-Server":["153105acad2c"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":10.211727169,"size":102,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963649.4784923,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43022","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/103/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":25.966829519,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963651.4619749,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"45948","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2974"]}},"bytes_read":2974,"user_id":"","duration":15.541550771,"size":2304,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776963656.5729613,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"54884","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/84/stream-session","headers":{"Expect":["100-continue"],"X-Real-Ip":["172.20.0.1"],"Content-Type":["application/json"],"X-Forwarded-Server":["153105acad2c"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.8115"],"Content-Length":["51"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":51,"user_id":"","duration":8.086795785,"size":482,"status":201,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Status":["201 Created"]}} -{"level":"info","ts":1776963663.0174482,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"37732","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/84/shell-sessions","headers":{"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.8115"],"X-Forwarded-Server":["153105acad2c"],"Accept-Encoding":["gzip"],"Content-Type":["application/json"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Content-Length":["73"],"Authorization":[],"Expect":["100-continue"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"]}},"bytes_read":73,"user_id":"","duration":14.529125369,"size":440,"status":201,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776963669.1317735,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"45948","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Length":["2982"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2982,"user_id":"","duration":17.33222434,"size":2312,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776963682.5847898,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58018","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"GET","host":"caddy","uri":"/ping","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":0,"user_id":"","duration":1.1067804,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776963682.8966053,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"58772","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-broker/ws/browser-gateway-stream?token=eyJzZXNzaW9uX3R5cGUiOiJnYXRld2F5LXN0cmVhbSIsImdhdGV3YXlfaWQiOjg0LCJkZXBhcnRtZW50X2lkIjoxMTU4LCJ1c2VyX2lkIjo1NTQxLCJzY29wZXMiOlsib3ZlcnZpZXciLCJ0YXNrcyIsImxvZ3MiLCJzdGF0aXN0aWNzIl0sImV4cCI6MTc3Njk2Mzk1NiwiaWF0IjoxNzc2OTYzNjU2LCJqdGkiOiJhYmE3YTk3MTk2ZDdmZDY2OWYxZjU4Y2IifQ.zkA46Yi5oEIgzQHUDy4mJDp1_FowSW93xtCerw91STI","headers":{"Accept":["*/*"],"Pragma":["no-cache"],"Sec-Websocket-Version":["13"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"Connection":["Upgrade"],"Sec-Fetch-Mode":["websocket"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["*"],"Cache-Control":["no-cache"],"Sec-Websocket-Key":["CHAEDnWw4KsTO8emvRI/zA=="],"Upgrade":["websocket"],"Accept-Encoding":["gzip, deflate"],"Sec-Websocket-Extensions":["permessage-deflate; client_max_window_bits"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["ws"]}},"bytes_read":0,"user_id":"","duration":1.496081393,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963684.9045846,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50382","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2983"]}},"bytes_read":2983,"user_id":"","duration":17.124788091,"size":2329,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776963686.4892423,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58030","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/browser-streams/validate","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["326"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":326,"user_id":"","duration":5.005304702,"size":250,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776963697.9248114,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"58772","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-broker/ws/browser-gateway-stream?token=test","headers":{"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip"],"Sec-Websocket-Key":["dGhlIHNhbXBsZSBub25jZQ=="],"Upgrade":["websocket"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["153105acad2c"],"X-Forwarded-Proto":["ws"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.8115"],"Connection":["Upgrade"],"Sec-Websocket-Version":["13"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":1.462603887,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776963698.600648,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"37732","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-broker/health","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.8115"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip"]}},"bytes_read":0,"user_id":"","duration":2.16219477,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776963699.5238621,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39454","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2983"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":2983,"user_id":"","duration":15.881040958,"size":2328,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776963715.277854,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39454","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2979"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2979,"user_id":"","duration":15.469522512,"size":2317,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776963732.2086878,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39454","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2979"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2979,"user_id":"","duration":16.514435431,"size":2321,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776963748.5610847,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"48092","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2973"]}},"bytes_read":2973,"user_id":"","duration":16.956496521,"size":2324,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963763.0246975,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50302","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2972"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2972,"user_id":"","duration":15.268594064,"size":2319,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963778.775107,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50302","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["2980"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2980,"user_id":"","duration":14.925061308,"size":2322,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776963798.2331858,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50302","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Content-Length":["2984"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2984,"user_id":"","duration":18.047580867,"size":2335,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776963813.8924315,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"33694","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/browser-streams/validate","headers":{"User-Agent":["node"],"Content-Length":["326"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":326,"user_id":"","duration":5.419374203,"size":250,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776963820.8074598,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Prefix":["/api"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["*"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"]}},"bytes_read":0,"user_id":"","duration":1.896377432,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776963824.312747,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49008","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":27.117130931,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963836.3374407,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/install-token","headers":{"Accept":["*/*"],"Content-Type":["application/json"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["58"],"Accept-Language":["*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":58,"user_id":"","duration":10.778071465,"size":423,"status":201,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["201 Created"]}} -{"level":"info","ts":1776963838.3094788,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Prefix":["/api"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":1.893524331,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963845.9283407,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58728","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.740154041,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} -{"level":"info","ts":1776963847.0947988,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39900","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Connection":["keep-alive"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.895988743,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963858.2553744,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-agent/claim","headers":{"User-Agent":["node"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"],"Content-Length":["187"],"Accept-Language":["*"],"Content-Type":["application/json"],"X-Forwarded-Port":["80"]}},"bytes_read":187,"user_id":"","duration":19.028347487,"size":1638,"status":201,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776963859.917931,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47144","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/104/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["181"]}},"bytes_read":181,"user_id":"","duration":1.2374839,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963867.2218418,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40216","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/104/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":7.29403432,"size":175,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963875.9905117,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"54594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3115"]}},"bytes_read":3115,"user_id":"","duration":17.785548665,"size":8224,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776963891.4124308,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34512","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/104/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2548"]}},"bytes_read":2548,"user_id":"","duration":14.889160151,"size":6696,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963898.9577289,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/104","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["node"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":7.25997813,"size":1979,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963902.4576852,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46422","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.446414128,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963906.955308,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/104/stream-session","headers":{"Content-Type":["application/json"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"],"Content-Length":["51"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Authorization":[],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":51,"user_id":"","duration":7.992601316,"size":479,"status":201,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776963908.8023002,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"51008","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-broker/ws/browser-gateway-stream?token=eyJzZXNzaW9uX3R5cGUiOiJnYXRld2F5LXN0cmVhbSIsImdhdGV3YXlfaWQiOjEwNCwiZGVwYXJ0bWVudF9pZCI6MTE3OCwidXNlcl9pZCI6NTU2MCwic2NvcGVzIjpbIm92ZXJ2aWV3IiwidGFza3MiLCJsb2dzIiwic3RhdGlzdGljcyJdLCJleHAiOjE3NzY5NjQyMDYsImlhdCI6MTc3Njk2MzkwNiwianRpIjoiOGFhYjJmYTdkNThjZjI1ZDQxMjVjNTJmIn0.6XNdw9ilFXkYA8cZvqx6hMYUzoyMJ7PTcnPM6_UGSpQ","headers":{"Sec-Websocket-Extensions":["permessage-deflate; client_max_window_bits"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate"],"Cache-Control":["no-cache"],"Connection":["Upgrade"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["*"],"Sec-Fetch-Mode":["websocket"],"Sec-Websocket-Version":["13"],"Upgrade":["websocket"],"X-Forwarded-Proto":["ws"],"User-Agent":["node"],"Accept":["*/*"],"Pragma":["no-cache"],"X-Forwarded-For":["172.20.0.1"],"Sec-Websocket-Key":["wEBxhIp4ESRLRqB6skwiRw=="],"X-Forwarded-Server":["153105acad2c"]}},"bytes_read":0,"user_id":"","duration":1.843202787,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963917.1371915,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60500","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/104/operations/next","headers":{"Content-Length":["163"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":163,"user_id":"","duration":25.70965,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776963919.1096885,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50474","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/104/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":5.69652029,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963919.2065575,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"DELETE","host":"localhost","uri":"/edge-gateways/104","headers":{"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["153105acad2c"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":10.386532125,"size":102,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776963920.9892495,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48384","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/104/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["605"]}},"bytes_read":605,"user_id":"","duration":1.877403776,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963923.487965,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39414","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":25.46655775,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963925.7099903,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40798","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":5.695372286,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776963944.7350538,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["*"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":1.014145111,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963953.8224015,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51234","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3115"]}},"bytes_read":3115,"user_id":"","duration":16.742551347,"size":8224,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963959.7589624,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/install-token","headers":{"Content-Length":["58"],"X-Forwarded-Server":["153105acad2c"],"Accept":["*/*"],"Accept-Language":["*"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":58,"user_id":"","duration":10.673993582,"size":423,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963961.0061734,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"User-Agent":["node"],"Accept":["*/*"]}},"bytes_read":0,"user_id":"","duration":1.160572466,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963979.2800205,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"38268","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":25.436261915,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776963981.6317637,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-agent/claim","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Content-Length":["187"],"Accept":["*/*"],"Content-Type":["application/json"],"X-Forwarded-Port":["80"]}},"bytes_read":187,"user_id":"","duration":19.585079139,"size":1639,"status":201,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["201 Created"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776963984.1548593,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47612","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/105/logs","headers":{"Content-Type":["application/json"],"Content-Length":["181"],"Accept":["application/json"]}},"bytes_read":181,"user_id":"","duration":2.119343194,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776963989.9346323,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46612","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/105/validate","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":5.771618521,"size":175,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964003.541794,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56366","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":27.715949724,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776964007.7581708,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58602","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":9.920672063,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964019.5635378,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43640","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/105/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2549"],"Accept":["application/json"]}},"bytes_read":2549,"user_id":"","duration":18.805876291,"size":6697,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964027.3180077,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/105","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["*"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"]}},"bytes_read":0,"user_id":"","duration":7.403149638,"size":1980,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964030.0394332,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58280","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3125"],"Accept":["application/json"]}},"bytes_read":3125,"user_id":"","duration":15.164912364,"size":8244,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964035.103972,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/105/stream-session","headers":{"Authorization":[],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Content-Type":["application/json"],"X-Forwarded-Server":["153105acad2c"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["node"],"Content-Length":["51"],"Accept-Language":["*"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":51,"user_id":"","duration":7.777263479,"size":480,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776964036.5899153,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"39506","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-broker/ws/browser-gateway-stream?token=eyJzZXNzaW9uX3R5cGUiOiJnYXRld2F5LXN0cmVhbSIsImdhdGV3YXlfaWQiOjEwNSwiZGVwYXJ0bWVudF9pZCI6MTE3OSwidXNlcl9pZCI6NTU2MSwic2NvcGVzIjpbIm92ZXJ2aWV3IiwidGFza3MiLCJsb2dzIiwic3RhdGlzdGljcyJdLCJleHAiOjE3NzY5NjQzMzUsImlhdCI6MTc3Njk2NDAzNSwianRpIjoiNTJlNmEwYTRkZjBlNTZiZjUxYjVlNDFhIn0.f3BmcpvKyQrBLlSXQjy9otlyXg0tcLrWM9bcQfivE44","headers":{"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["websocket"],"Sec-Websocket-Extensions":["permessage-deflate; client_max_window_bits"],"Upgrade":["websocket"],"X-Forwarded-Proto":["ws"],"Accept-Language":["*"],"Connection":["Upgrade"],"Sec-Websocket-Key":["gnvKd/cvsTjwc3hd/ZdP9w=="],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"X-Forwarded-Server":["153105acad2c"],"Sec-Websocket-Version":["13"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Pragma":["no-cache"]}},"bytes_read":0,"user_id":"","duration":1.481460297,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964045.6088448,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36020","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/105/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.038224603,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776964053.2933142,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"DELETE","host":"localhost","uri":"/edge-gateways/105","headers":{"Accept-Language":["*"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept":["*/*"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["153105acad2c"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":16.697019215,"size":102,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964056.073885,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33356","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":26.026880359,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964068.6213455,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54982","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/105/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":27.043995167,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964078.1904233,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52694","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.131138446,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776964080.10971,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56934","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept":["*/*"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":6.051304326,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964107.6494796,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"54412","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["3117"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3117,"user_id":"","duration":16.510472139,"size":8226,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964111.248984,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/84/stream-session","headers":{"Accept-Encoding":["gzip"],"X-Forwarded-Port":["80"],"Content-Length":["51"],"Content-Type":["application/json"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.8115"],"X-Forwarded-For":["172.20.0.1"],"Expect":["100-continue"]}},"bytes_read":51,"user_id":"","duration":9.198772483,"size":474,"status":201,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776964118.3198538,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Port":["80"],"Accept":["*/*"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["*"]}},"bytes_read":0,"user_id":"","duration":3.025800394,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964133.623633,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50496","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":25.962773147,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964134.2076182,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/install-token","headers":{"Accept-Language":["*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["153105acad2c"],"Accept":["*/*"],"Authorization":[],"Content-Type":["application/json"],"User-Agent":["node"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Content-Length":["58"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":58,"user_id":"","duration":11.001977643,"size":433,"status":201,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["201 Created"]}} -{"level":"info","ts":1776964136.3695407,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["node"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept":["*/*"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.077934287,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776964156.9532168,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"38652","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":27.294640751,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964157.51912,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-agent/claim","headers":{"User-Agent":["node"],"Content-Length":["187"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["153105acad2c"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"Content-Type":["application/json"]}},"bytes_read":187,"user_id":"","duration":20.099910075,"size":1645,"status":201,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["201 Created"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776964158.4275851,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53720","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":6.771980289,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776964163.6618237,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45162","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/106/logs","headers":{"Content-Length":["181"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":181,"user_id":"","duration":5.294721001,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} -{"level":"info","ts":1776964172.3224652,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53148","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/106/validate","headers":{"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["76"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":8.640437977,"size":175,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776964186.1228263,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59546","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3118"]}},"bytes_read":3118,"user_id":"","duration":17.384826696,"size":8227,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776964195.6620703,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44248","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/106/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2549"]}},"bytes_read":2549,"user_id":"","duration":15.348772249,"size":6697,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964206.0228992,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/106","headers":{"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["153105acad2c"],"Accept":["*/*"],"Accept-Language":["*"],"X-Forwarded-Port":["80"],"User-Agent":["node"],"Authorization":[],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":10.063374802,"size":1977,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776964213.2298794,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"54778","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":27.103049437,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964219.7018814,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/106/stream-session","headers":{"X-Forwarded-Prefix":["/api"],"User-Agent":["node"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Content-Length":["51"],"Content-Type":["application/json"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["153105acad2c"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":51,"user_id":"","duration":13.649938518,"size":484,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776964222.0941234,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55234","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/106/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.403766514,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776964224.626466,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42678","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/browser-streams/validate","headers":{"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept-Language":["*"],"User-Agent":["node"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["327"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":327,"user_id":"","duration":4.912625541,"size":251,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964236.4401035,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"53962","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":28.300874487,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964242.4058125,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54904","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":12.271364268,"size":172,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776964244.4417355,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55848","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/106/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.768353073,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776964246.7945335,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54382","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/106/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":7.111430856,"size":175,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964268.8904305,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"38702","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3115"]}},"bytes_read":3115,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776964270.191402,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"55232","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["366"],"Accept":["application/json"]}},"bytes_read":366,"user_id":"","duration":2.959077993,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964275.9858696,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/106/operations","headers":{"X-Forwarded-Server":["153105acad2c"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Content-Length":["256"],"Accept":["*/*"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["*"],"Content-Type":["application/json"]}},"bytes_read":256,"user_id":"","duration":50.819722781,"size":2448,"status":201,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Status":["201 Created"]}} -{"level":"error","ts":1776964278.6910706,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59102","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/106/logs","headers":{"Content-Type":["application/json"],"Content-Length":["368"],"Accept":["application/json"]}},"bytes_read":368,"user_id":"","duration":2.103759376,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776964283.419399,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40352","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/106/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2639"]}},"bytes_read":2639,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964298.7197611,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"55238","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":28.517291206,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964308.4865727,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59110","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/106/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":29.783928125,"size":1532,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964317.707205,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"DELETE","host":"localhost","uri":"/edge-gateways/106","headers":{"Accept":["*/*"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["*"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Host":["localhost"],"User-Agent":["node"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"]}},"bytes_read":0,"user_id":"","duration":11.340424454,"size":102,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776964318.1628628,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58800","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":25.948162221,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964323.9022882,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"36408","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":9.68482911,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964328.4333463,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42936","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/106/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":27.739961976,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776964341.6775665,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45030","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":2.458437461,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964344.685681,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46754","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3115"]}},"bytes_read":3115,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964360.1385286,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45038","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3115"]}},"bytes_read":3115,"user_id":"","duration":18.200624594,"size":8224,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964368.6766436,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58378","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":8.510198342,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964371.6544595,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"36428","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":6.811478645,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964395.8898518,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33614","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2817"]}},"bytes_read":2817,"user_id":"","duration":18.944795698,"size":7621,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964396.758019,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"User-Agent":["node"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.764206088,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776964414.423766,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/install-token","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["153105acad2c"],"Content-Length":["58"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["*"],"Authorization":[],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"]}},"bytes_read":58,"user_id":"","duration":11.716686769,"size":433,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964416.50971,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"User-Agent":["node"],"Accept":["*/*"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["153105acad2c"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":1.988077176,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964424.0264287,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56836","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Length":["163"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":163,"user_id":"","duration":28.131330486,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776964440.876078,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-agent/claim","headers":{"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Content-Type":["application/json"],"X-Forwarded-Prefix":["/api"],"User-Agent":["node"],"Content-Length":["187"],"Accept":["*/*"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":187,"user_id":"","duration":22.963504005,"size":1644,"status":201,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776964445.4743614,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52106","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/107/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["181"]}},"bytes_read":181,"user_id":"","duration":3.785250146,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964446.6271124,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47022","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":28.710553011,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776964448.2770066,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42010","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":8.353994081,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964452.7466447,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35822","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/107/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":7.261254664,"size":175,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964460.0238998,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35836","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/107/backlog","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["64"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":64,"user_id":"","duration":7.253634233,"size":141,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964474.013065,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35834","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/107/presence","headers":{"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["205"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":205,"user_id":"","duration":21.248085071,"size":289,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964475.5161343,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/107","headers":{"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"Accept":["*/*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":11.095434678,"size":1578,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"error","ts":1776964478.073059,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51524","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":1.361271997,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776964483.39796,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"59746","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/107/telemetry","headers":{"Accept":["*/*"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2406"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":2406,"user_id":"","duration":19.062035123,"size":2028,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776964486.1597257,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43166","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2807"]}},"bytes_read":2807,"user_id":"","duration":29.424516771,"size":7618,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964486.6432343,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/107","headers":{"Accept-Language":["*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["node"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["153105acad2c"]}},"bytes_read":0,"user_id":"","duration":10.591407769,"size":2028,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964494.7157223,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/107/stream-session","headers":{"Sec-Fetch-Mode":["cors"],"Accept":["*/*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["153105acad2c"],"Content-Length":["51"],"Content-Type":["application/json"],"X-Forwarded-Port":["80"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"Authorization":[],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":51,"user_id":"","duration":8.068434663,"size":484,"status":201,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776964496.6032565,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"49084","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/107/telemetry","headers":{"Content-Length":["2496"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2496,"user_id":"","duration":15.538761173,"size":2035,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776964502.1400042,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"51678","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/browser-streams/validate","headers":{"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["327"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":327,"user_id":"","duration":7.418769823,"size":251,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964505.6408615,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51534","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Length":["163"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":163,"user_id":"","duration":27.548356052,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776964513.5320833,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"49084","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/107/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2504"],"Accept-Language":["*"],"User-Agent":["node"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2504,"user_id":"","duration":15.784529083,"size":2055,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776964526.3305125,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43094","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.222087752,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776964529.7240663,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"49946","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":7.62709304,"size":172,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} -{"level":"info","ts":1776964538.293666,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"49084","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/107/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2507"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"]}},"bytes_read":2507,"user_id":"","duration":24.378898328,"size":2437,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776964541.801173,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/107/operations","headers":{"Authorization":[],"Content-Type":["application/json"],"X-Forwarded-Proto":["http"],"User-Agent":["node"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Content-Length":["256"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Port":["80"]}},"bytes_read":256,"user_id":"","duration":39.132558607,"size":2446,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776964548.4749348,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"48612","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.371651023,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776964548.5285075,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49192","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2807"]}},"bytes_read":2807,"user_id":"","duration":21.404663337,"size":7618,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964554.3936834,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"49946","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/107/telemetry","headers":{"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2501"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2501,"user_id":"","duration":24.551776047,"size":2490,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776964561.1955094,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52900","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/107/backlog","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["64"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":64,"user_id":"","duration":26.783309479,"size":695,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"error","ts":1776964570.604714,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60840","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.885840383,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964570.7106676,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"48620","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2807"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2807,"user_id":"","duration":21.977213864,"size":7618,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964570.8440855,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"55270","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/107/telemetry","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2495"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":2495,"user_id":"","duration":24.830583308,"size":2489,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776964577.3226821,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"60448","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":6.688334186,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776964581.3253312,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42618","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/107/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2491"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2491,"user_id":"","duration":18.409201141,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776964582.1489382,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"55270","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/107/telemetry","headers":{"Accept-Language":["*"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2994"],"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2994,"user_id":"","duration":7.696650329,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964582.5896392,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"DELETE","host":"localhost","uri":"/edge-gateways/107","headers":{"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["153105acad2c"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":10.441572951,"size":102,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776964583.9313781,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"32788","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/107/operations/39/events","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["221"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":221,"user_id":"","duration":9.475278962,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964604.2342944,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59170","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2838"],"Accept":["application/json"]}},"bytes_read":2838,"user_id":"","duration":17.2617768,"size":7866,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964630.9708478,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49602","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Length":["163"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":163,"user_id":"","duration":26.714529985,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964651.025658,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/install-token","headers":{"Content-Length":["59"],"Authorization":[],"Expect":["100-continue"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.8115"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"Content-Type":["application/json"],"X-Forwarded-Host":["localhost"]}},"bytes_read":59,"user_id":"","duration":15.44467037,"size":433,"status":201,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776964653.0649636,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43124","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":26.791820672,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964656.4229867,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"User-Agent":["node"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["153105acad2c"],"Accept-Language":["*"]}},"bytes_read":0,"user_id":"","duration":1.085338562,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964669.9451714,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43392","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2807"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2807,"user_id":"","duration":17.741498814,"size":7618,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964680.0702362,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-agent/claim","headers":{"Content-Length":["188"],"Content-Type":["application/json"],"X-Forwarded-Proto":["http"],"Accept":["*/*"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":188,"user_id":"","duration":21.412560726,"size":1640,"status":201,"resp_headers":{"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"error","ts":1776964682.648625,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"33364","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["182"]}},"bytes_read":182,"user_id":"","duration":2.126947514,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964702.7591882,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"38142","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2901"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2901,"user_id":"","duration":17.197830819,"size":7712,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964712.7691197,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34564","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2636"]}},"bytes_read":2636,"user_id":"","duration":14.669588546,"size":6785,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964713.3169262,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"45578","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/108","headers":{"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.8115"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":13.628040705,"size":1975,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776964729.4354331,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"38192","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":26.647190482,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964741.9440103,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"37930","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":29.143005723,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964750.8903353,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36224","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":26.126698305,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964760.8437967,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41142","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.032816684,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964778.442647,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2901"],"Accept":["application/json"]}},"bytes_read":2901,"user_id":"","duration":16.074541981,"size":7712,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964790.2722683,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34628","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2722"]}},"bytes_read":2722,"user_id":"","duration":17.893739157,"size":6894,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964807.669282,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58672","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":29.198877969,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776964815.8509016,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"57858","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["164"],"Accept":["application/json"]}},"bytes_read":164,"user_id":"","duration":25.538687515,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776964826.156464,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"55554","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":25.670741859,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964838.7720418,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"37584","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":26.485175614,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776964857.464995,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59002","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2903"]}},"bytes_read":2903,"user_id":"","duration":19.204830096,"size":7714,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964867.2652493,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50698","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2735"]}},"bytes_read":2735,"user_id":"","duration":17.457167382,"size":6917,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776964884.0037882,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57298","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":26.515506083,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776964893.6559858,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39690","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":26.366531979,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964906.615769,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59570","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":27.125726939,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776964907.668792,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57266","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.176994799,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964916.0568426,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52322","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.753592782,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964917.3871725,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57266","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.09891233,"size":176,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964935.3820388,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36544","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/backlog","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["65"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":65,"user_id":"","duration":17.95582195,"size":142,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776964940.1324453,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"35056","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["366"],"Accept":["application/json"]}},"bytes_read":366,"user_id":"","duration":1.83140488,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964941.480953,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36532","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/presence","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["205"]}},"bytes_read":205,"user_id":"","duration":24.063009819,"size":289,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964944.27657,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57522","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2532"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2532,"user_id":"","duration":14.861475143,"size":2044,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776964945.008326,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"59620","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/108","headers":{"Authorization":[],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.8115"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":14.186645822,"size":2044,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776964945.8499446,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40962","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2810"]}},"bytes_read":2810,"user_id":"","duration":27.530033331,"size":7621,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776964951.2243145,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"59620","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["node"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["*"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":1.054750941,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776964960.2085567,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57522","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["2519"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2519,"user_id":"","duration":14.451284205,"size":2037,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776964966.693315,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"35064","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":26.541802627,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964966.8254044,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"59620","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/install-token","headers":{"Content-Length":["58"],"Accept-Language":["*"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["node"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"],"Content-Type":["application/json"],"X-Forwarded-Server":["153105acad2c"]}},"bytes_read":58,"user_id":"","duration":10.571933507,"size":433,"status":201,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["201 Created"]}} -{"level":"info","ts":1776964968.5534463,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"59620","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["153105acad2c"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["*"],"X-Forwarded-For":["172.20.0.1"],"Accept":["*/*"],"X-Forwarded-Host":["localhost"],"User-Agent":["node"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":1.651911383,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964975.6775694,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57522","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"Content-Length":["2518"]}},"bytes_read":2518,"user_id":"","duration":14.073519671,"size":2032,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776964988.1349628,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51898","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":25.998266508,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964989.3636029,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"59620","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-agent/claim","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Server":["153105acad2c"],"Content-Length":["187"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"X-Forwarded-Proto":["http"],"Accept":["*/*"],"Content-Type":["application/json"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["node"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":187,"user_id":"","duration":19.95880557,"size":1643,"status":201,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964990.9551363,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49368","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":6.819773208,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776964993.5948472,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.14","remote_port":"60612","client_ip":"172.20.0.14","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/109/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["181"]}},"bytes_read":181,"user_id":"","duration":3.668675465,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776964994.227383,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57522","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2521"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2521,"user_id":"","duration":16.564596299,"size":2039,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776964999.4917333,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49368","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/109/validate","headers":{"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.869277459,"size":175,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776965006.4252973,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40270","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/109/backlog","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["64"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":64,"user_id":"","duration":6.927729591,"size":141,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965007.8073988,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37832","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2520,"user_id":"","duration":14.016122323,"size":2047,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965007.938603,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36668","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2810"]}},"bytes_read":2810,"user_id":"","duration":18.779786421,"size":7621,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965012.220493,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40256","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/109/presence","headers":{"Content-Length":["205"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":205,"user_id":"","duration":12.724803181,"size":289,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965014.3764787,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54478","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.179856251,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965017.92632,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"59620","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/109","headers":{"Authorization":[],"X-Forwarded-Prefix":["/api"],"Accept":["*/*"],"Accept-Language":["*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["node"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":7.070325275,"size":1581,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776965023.7705824,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37832","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2523"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2523,"user_id":"","duration":14.104976277,"size":2056,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965025.0194798,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54482","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/109/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2400"]}},"bytes_read":2400,"user_id":"","duration":14.461411705,"size":2026,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965026.1590247,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"59620","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/109","headers":{"Accept":["*/*"],"X-Forwarded-Host":["localhost"],"Accept-Language":["*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["node"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":7.70394344,"size":2026,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776965034.0170362,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"59620","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/109/stream-session","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Content-Length":["51"],"Accept-Language":["*"],"Authorization":[],"Content-Type":["application/json"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["153105acad2c"]}},"bytes_read":51,"user_id":"","duration":7.854655725,"size":482,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965039.321135,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47996","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/browser-streams/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["327"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":327,"user_id":"","duration":5.293525311,"size":251,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965039.3668165,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47974","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/109/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["node"],"Content-Length":["2496"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2496,"user_id":"","duration":13.698110011,"size":2033,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965040.500511,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47982","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2511"]}},"bytes_read":2511,"user_id":"","duration":14.724483346,"size":2039,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965041.3621936,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59572","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2798"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2798,"user_id":"","duration":16.612504221,"size":7609,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965056.2684944,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47974","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2522,"user_id":"","duration":14.598461148,"size":2050,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965063.7441428,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47982","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/109/telemetry","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Content-Length":["2496"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2496,"user_id":"","duration":21.736655173,"size":2391,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965067.5139282,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46710","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Length":["163"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":163,"user_id":"","duration":26.126617834,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965072.01842,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41232","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":13.973467474,"size":2049,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965072.508806,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"59620","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/109/operations","headers":{"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"Accept-Language":["*"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept":["*/*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["153105acad2c"],"Content-Length":["256"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":256,"user_id":"","duration":32.65529507,"size":2447,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965077.025678,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47974","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/109/telemetry","headers":{"Content-Length":["2496"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":2496,"user_id":"","duration":19.156337013,"size":2430,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965088.6735682,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35072","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"]}},"bytes_read":2521,"user_id":"","duration":14.20992352,"size":2048,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965090.0382452,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52944","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":26.6450324,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965090.1544282,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47982","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/109/backlog","headers":{"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["64"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":64,"user_id":"","duration":24.78760597,"size":699,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965091.200304,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48476","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":5.824883606,"size":172,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965094.5739157,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41232","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/109/telemetry","headers":{"Connection":["keep-alive"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2495"],"Content-Type":["application/json"]}},"bytes_read":2495,"user_id":"","duration":20.835034678,"size":2473,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965106.0955746,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47982","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2521"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept-Language":["*"]}},"bytes_read":2521,"user_id":"","duration":15.73792636,"size":2049,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965111.5002549,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35072","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/109/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2495"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2495,"user_id":"","duration":21.969899169,"size":2473,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776965116.6944344,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38878","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/109/operations/40/events","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["node"],"Content-Length":["221"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":221,"user_id":"","duration":14.809303132,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965118.0242028,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"59620","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"DELETE","host":"localhost","uri":"/edge-gateways/109","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["153105acad2c"],"Accept-Language":["*"],"X-Forwarded-Proto":["http"],"User-Agent":["node"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":0,"user_id":"","duration":12.329688458,"size":102,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776965118.2000365,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38868","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/109/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2992"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2992,"user_id":"","duration":16.315096913,"size":118,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"error","ts":1776965118.2532687,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38882","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/109/presence","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["186"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":186,"user_id":"","duration":15.292740839,"size":118,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965121.7477825,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56400","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2817"]}},"bytes_read":2817,"user_id":"","duration":19.544381004,"size":7638,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965122.7318234,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49684","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["2519"],"Connection":["keep-alive"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2519,"user_id":"","duration":17.528947342,"size":2048,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965147.669878,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38868","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2519"]}},"bytes_read":2519,"user_id":"","duration":25.92327774,"size":2053,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776965148.052132,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50358","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.282831488,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965171.1795547,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"59620","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"X-Forwarded-Server":["153105acad2c"],"Sec-Fetch-Mode":["cors"],"Accept":["*/*"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.918537089,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776965177.5492387,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50110","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":11.737312926,"size":172,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965177.781608,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33550","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2533"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2533,"user_id":"","duration":39.740655391,"size":2056,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965181.4234161,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47986","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["2530"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2530,"user_id":"","duration":27.050763096,"size":2059,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965188.6827388,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50122","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2533"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":2533,"user_id":"","duration":17.655844741,"size":2064,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965189.6222508,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"59620","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/install-token","headers":{"Content-Type":["application/json"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["153105acad2c"],"Content-Length":["58"],"Accept-Language":["*"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["*/*"],"Authorization":[]}},"bytes_read":58,"user_id":"","duration":10.382559821,"size":433,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965190.4536092,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33840","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":46.663541681,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965190.8190432,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"59620","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["153105acad2c"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":1.105539991,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965198.879608,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2819"]}},"bytes_read":2819,"user_id":"","duration":16.185604781,"size":7640,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965200.5874994,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58202","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2523"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"]}},"bytes_read":2523,"user_id":"","duration":14.020139495,"size":2050,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776965213.8945267,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"59620","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-agent/claim","headers":{"User-Agent":["node"],"Accept-Language":["*"],"X-Forwarded-Server":["153105acad2c"],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Content-Length":["187"],"Accept":["*/*"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":187,"user_id":"","duration":22.058020978,"size":1643,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776965217.6502972,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.14","remote_port":"59758","client_ip":"172.20.0.14","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/110/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["181"]}},"bytes_read":181,"user_id":"","duration":3.230894332,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965220.4475665,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58202","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2533"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2533,"user_id":"","duration":17.501293268,"size":2055,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965223.6433363,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53406","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/110/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.983923368,"size":175,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776965228.3980021,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42540","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":29.524711501,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965230.3899398,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53428","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/110/backlog","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["64"]}},"bytes_read":64,"user_id":"","duration":6.740735661,"size":141,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776965232.867425,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53418","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2531"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"User-Agent":["node"]}},"bytes_read":2531,"user_id":"","duration":14.286671608,"size":2054,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965236.1552534,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58202","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/110/presence","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["205"]}},"bytes_read":205,"user_id":"","duration":12.481741434,"size":289,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965243.9361694,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"59620","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/110","headers":{"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"User-Agent":["node"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["153105acad2c"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":8.045962248,"size":1582,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965247.6219473,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"48518","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.731729627,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965248.5481255,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53418","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/110/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2414"]}},"bytes_read":2414,"user_id":"","duration":13.286730895,"size":2035,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776965248.8200474,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50028","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2532"]}},"bytes_read":2532,"user_id":"","duration":14.085470203,"size":2054,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965249.104606,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50036","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["76"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":6.221474313,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965252.7540812,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"59620","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/110","headers":{"User-Agent":["node"],"Accept":["*/*"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["153105acad2c"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":8.311965031,"size":2035,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965260.1728482,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"59620","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/110","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["153105acad2c"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Accept-Language":["*"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":7.414872421,"size":2035,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965265.47837,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50036","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2520"],"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"]}},"bytes_read":2520,"user_id":"","duration":14.904676245,"size":2049,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776965265.4788034,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50028","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/110/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2496"]}},"bytes_read":2496,"user_id":"","duration":13.86954978,"size":2035,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965268.3362694,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"59620","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/110/stream-session","headers":{"X-Forwarded-Port":["80"],"User-Agent":["node"],"Accept-Language":["*"],"Authorization":[],"Content-Type":["application/json"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Content-Length":["51"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["153105acad2c"]}},"bytes_read":51,"user_id":"","duration":8.141517672,"size":485,"status":201,"resp_headers":{"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776965273.7444808,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47360","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/browser-streams/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Content-Length":["327"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":327,"user_id":"","duration":5.402314065,"size":251,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965276.0074575,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49434","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2804"]}},"bytes_read":2804,"user_id":"","duration":16.356056767,"size":7615,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} -{"level":"info","ts":1776965280.7849636,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50036","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"User-Agent":["node"],"Content-Length":["2520"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2520,"user_id":"","duration":14.146981148,"size":2050,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965281.4993377,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50028","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/110/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Content-Length":["2494"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2494,"user_id":"","duration":13.78456596,"size":2048,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965300.944985,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50036","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2518"]}},"bytes_read":2518,"user_id":"","duration":18.177359636,"size":2047,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965301.8864233,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50506","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":25.858745116,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965310.5163693,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50028","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/110/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2492"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2492,"user_id":"","duration":26.855793736,"size":2431,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965313.174466,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57164","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Length":["2521"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"]}},"bytes_read":2521,"user_id":"","duration":14.43860462,"size":2050,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776965317.9399223,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"59620","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/110/operations","headers":{"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Proto":["http"],"User-Agent":["node"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["*"],"Authorization":[],"Content-Type":["application/json"],"X-Forwarded-For":["172.20.0.1"],"Content-Length":["256"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":256,"user_id":"","duration":43.66118487,"size":2442,"status":201,"resp_headers":{"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776965319.5697744,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57178","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/110/telemetry","headers":{"Content-Length":["2495"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2495,"user_id":"","duration":19.688878322,"size":2432,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776965324.2095025,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56286","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.20099156,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965326.3150525,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57178","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.297476928,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965329.7416553,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48188","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2534"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2534,"user_id":"","duration":14.657113423,"size":2057,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965335.1207654,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47282","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/110/backlog","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["64"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"]}},"bytes_read":64,"user_id":"","duration":24.477715601,"size":694,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965337.311972,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57164","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/110/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2508"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2508,"user_id":"","duration":21.458224558,"size":2485,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965345.5725112,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60938","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["2522"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":2522,"user_id":"","duration":13.749876066,"size":2052,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776965353.2184422,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48188","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/110/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["2496"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2496,"user_id":"","duration":21.42320493,"size":2480,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965354.4125693,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"35708","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2804"]}},"bytes_read":2804,"user_id":"","duration":19.114952829,"size":7615,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} -{"level":"error","ts":1776965360.2510817,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50918","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/110/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2982"]}},"bytes_read":2982,"user_id":"","duration":13.289080679,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} -{"level":"error","ts":1776965360.27801,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50934","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/110/presence","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Content-Length":["186"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":186,"user_id":"","duration":11.553461906,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"error","ts":1776965360.4450574,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50928","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/110/operations/41/events","headers":{"Content-Length":["221"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":221,"user_id":"","duration":13.479971635,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965360.9961884,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"59620","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"DELETE","host":"localhost","uri":"/edge-gateways/110","headers":{"X-Forwarded-Port":["80"],"User-Agent":["node"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"Accept":["*/*"],"Accept-Language":["*"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate"],"Authorization":[],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":10.056937529,"size":102,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776965362.8023612,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60938","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["2520"]}},"bytes_read":2520,"user_id":"","duration":15.091068005,"size":2052,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965380.0231037,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50918","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2532"]}},"bytes_read":2532,"user_id":"","duration":16.640017996,"size":2056,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776965380.7270732,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44132","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.289454883,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965393.676773,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"59620","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/108/stream-session","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Content-Length":["51"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Authorization":[],"X-Forwarded-Prefix":["/api"]}},"bytes_read":51,"user_id":"","duration":8.778228833,"size":484,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965394.9739397,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42894","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2532"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2532,"user_id":"","duration":14.96830915,"size":2061,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776965399.397822,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51874","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/browser-streams/validate","headers":{"Content-Length":["327"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":327,"user_id":"","duration":5.707655271,"size":251,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965403.2749853,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60222","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.818949919,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965404.3750663,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55940","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":5.924166812,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965410.064975,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42894","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2523"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2523,"user_id":"","duration":14.508135497,"size":2053,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965429.6346474,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50318","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2808"]}},"bytes_read":2808,"user_id":"","duration":15.912710249,"size":7619,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965431.0594292,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39972","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2531"],"Connection":["keep-alive"]}},"bytes_read":2531,"user_id":"","duration":18.903141627,"size":2437,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965435.8865004,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"59620","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/108/operations","headers":{"User-Agent":["node"],"Accept-Language":["*"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Content-Length":["239"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":239,"user_id":"","duration":36.463850976,"size":2438,"status":201,"resp_headers":{"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776965446.4802058,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"57362","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/108/operations","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Language":["*"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["153105acad2c"],"Accept-Encoding":["gzip, deflate"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["*/*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":12.772214343,"size":622,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776965451.638174,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60240","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["2529"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2529,"user_id":"","duration":23.070259028,"size":2484,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965454.5532124,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60252","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/backlog","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["65"]}},"bytes_read":65,"user_id":"","duration":25.98050218,"size":694,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965456.778184,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51812","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":27.125545669,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965465.931953,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53032","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["2531"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept-Language":["*"]}},"bytes_read":2531,"user_id":"","duration":21.145785509,"size":2478,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965477.597822,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45898","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":25.940660921,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965479.3333945,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48800","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":5.69211914,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965481.0825603,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46248","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2521"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2521,"user_id":"","duration":20.431289586,"size":2481,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776965496.4985812,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48798","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["3002"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":3002,"user_id":"","duration":24.046236553,"size":2604,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776965499.696879,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48794","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/operations/42/events","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["222"]}},"bytes_read":222,"user_id":"","duration":27.246753912,"size":737,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776965506.5128093,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46248","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2993"]}},"bytes_read":2993,"user_id":"","duration":22.762125392,"size":2639,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965509.1559541,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59734","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2805"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2805,"user_id":"","duration":18.672792521,"size":7616,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776965513.3625338,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48452","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/operations/42/events","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["199"]}},"bytes_read":199,"user_id":"","duration":29.610312787,"size":820,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965517.5559957,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45144","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["2993"],"Connection":["keep-alive"]}},"bytes_read":2993,"user_id":"","duration":23.702199822,"size":2724,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965522.575014,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45150","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/operations/42/events","headers":{"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["184"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":184,"user_id":"","duration":28.718964711,"size":820,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965533.1618025,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52082","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["2521"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2521,"user_id":"","duration":23.187035401,"size":2759,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776965534.1305337,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57126","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/backlog","headers":{"Accept-Language":["*"],"Content-Length":["65"],"Connection":["keep-alive"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":65,"user_id":"","duration":6.491224388,"size":142,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965535.5378425,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57098","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.361804871,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965537.591668,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45164","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/operations/42/complete","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["229"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":229,"user_id":"","duration":43.719775563,"size":820,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776965544.2065709,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33514","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/backlog","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["65"]}},"bytes_read":65,"user_id":"","duration":6.612400274,"size":142,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965548.7408664,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57116","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Accept":["*/*"]}},"bytes_read":2522,"user_id":"","duration":23.165258558,"size":2756,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965557.3061197,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"55308","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":26.140468396,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965558.9436104,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47946","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":5.780273417,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965565.0272322,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33524","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2518"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2518,"user_id":"","duration":23.107503833,"size":2750,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965581.9103081,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56564","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2517"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2517,"user_id":"","duration":24.103586001,"size":2750,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776965586.375603,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34738","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2808"],"Accept":["application/json"]}},"bytes_read":2808,"user_id":"","duration":16.57477878,"size":7619,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965594.788778,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39230","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"User-Agent":["node"],"Content-Length":["2523"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2523,"user_id":"","duration":22.623617983,"size":2755,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965611.6992142,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33088","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":22.66461613,"size":2763,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776965612.2658212,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34792","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Length":["163"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":163,"user_id":"","duration":25.862363399,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965629.574823,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48368","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"]}},"bytes_read":2520,"user_id":"","duration":23.909544065,"size":2759,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965634.5570247,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51354","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.141504582,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965638.663827,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48368","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":8.263507521,"size":172,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965647.4816322,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52372","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2519"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2519,"user_id":"","duration":25.736481381,"size":2758,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776965660.2360752,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46340","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2518"],"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2518,"user_id":"","duration":22.614864381,"size":2748,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776965664.0264742,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"35134","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2811"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2811,"user_id":"","duration":16.758259115,"size":7622,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965676.1060283,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41700","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"]}},"bytes_read":2522,"user_id":"","duration":22.810678637,"size":2755,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965689.5925205,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37816","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":25.544326038,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965691.1852303,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56052","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2522"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2522,"user_id":"","duration":21.511348225,"size":2760,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965708.3180645,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46488","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2523"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":2523,"user_id":"","duration":22.492376836,"size":2754,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965712.2200313,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"53926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.194028845,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965713.5855913,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59018","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":5.548060826,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965723.8683054,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45668","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":22.140849134,"size":2754,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776965739.9763176,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45388","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Content-Length":["2524"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2524,"user_id":"","duration":22.366639677,"size":2757,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965741.0908084,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"48360","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2801"]}},"bytes_read":2801,"user_id":"","duration":16.2536866,"size":7612,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965759.6372888,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58032","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["2523"]}},"bytes_read":2523,"user_id":"","duration":25.907399662,"size":2755,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776965767.980742,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41188","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.87556124,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965775.353949,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38118","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2519"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":2519,"user_id":"","duration":25.781321812,"size":2759,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965787.8147163,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40450","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2524"],"Connection":["keep-alive"]}},"bytes_read":2524,"user_id":"","duration":22.140168344,"size":2748,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965788.347832,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"55894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":25.226737676,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965791.370787,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58892","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":6.257309226,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965804.334727,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43934","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2522,"user_id":"","duration":22.572428581,"size":2762,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965816.63824,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41446","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2808"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2808,"user_id":"","duration":16.265678772,"size":7619,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965820.0291052,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59662","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2521,"user_id":"","duration":22.186174866,"size":2757,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965837.1084063,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40876","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":23.445679183,"size":2759,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776965846.4759035,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42094","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":29.821378172,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965853.1388974,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37162","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Connection":["keep-alive"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2522,"user_id":"","duration":23.387361209,"size":2770,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965864.713549,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"54030","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.076591526,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965866.0172837,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50910","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":5.372596484,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965867.7150533,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36636","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2515"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2515,"user_id":"","duration":22.087359502,"size":2751,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965884.7754564,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50920","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept":["*/*"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":2520,"user_id":"","duration":22.825819044,"size":2757,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965898.8313932,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58062","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2809"]}},"bytes_read":2809,"user_id":"","duration":21.390480452,"size":7620,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776965899.5435085,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"53236","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":2.121546472,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776965904.3976812,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43472","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2522,"user_id":"","duration":26.699463155,"size":2748,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965917.6140034,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56370","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2526"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2526,"user_id":"","duration":23.599520607,"size":2754,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776965926.7761557,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"53242","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":27.218987279,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} -{"level":"info","ts":1776965935.0837362,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59852","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["2532"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2532,"user_id":"","duration":24.409654407,"size":2760,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965947.615336,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"55930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":26.067729822,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965948.3364916,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58668","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Content-Length":["2519"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2519,"user_id":"","duration":21.331091538,"size":2759,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965949.0120094,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48826","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":5.470427612,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965965.7209103,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33562","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2809"]}},"bytes_read":2809,"user_id":"","duration":17.152676909,"size":7620,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965968.660934,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48828","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2523"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"]}},"bytes_read":2523,"user_id":"","duration":25.06613988,"size":2763,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776965971.9104497,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39364","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":5.928347618,"size":172,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965983.705027,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60004","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2516"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2516,"user_id":"","duration":24.023327189,"size":2758,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965998.3473353,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33240","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2806"]}},"bytes_read":2806,"user_id":"","duration":15.871912772,"size":7617,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776965998.5396407,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39364","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Length":["2523"]}},"bytes_read":2523,"user_id":"","duration":23.057598723,"size":2758,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776966013.7292795,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35060","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2520"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2520,"user_id":"","duration":22.171821133,"size":2756,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776966025.9458652,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58476","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":27.578548447,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966031.7159793,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36642","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2529"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":2529,"user_id":"","duration":23.566079105,"size":2758,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966047.6611037,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45470","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":27.294654741,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966048.1152658,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53046","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":5.760013011,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966048.1157415,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40436","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2516"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":2516,"user_id":"","duration":23.306080009,"size":2750,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776966063.9530613,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53040","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Accept-Language":["*"]}},"bytes_read":2522,"user_id":"","duration":23.286589706,"size":2752,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776966074.788846,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60190","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2809"]}},"bytes_read":2809,"user_id":"","duration":17.190358534,"size":7620,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966081.699741,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42474","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2519"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"]}},"bytes_read":2519,"user_id":"","duration":24.911886193,"size":2749,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776966097.8976636,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51596","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2517"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2517,"user_id":"","duration":25.229891581,"size":2747,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776966101.6890967,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51328","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.880250446,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966112.5719965,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58412","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2522,"user_id":"","duration":23.731746429,"size":2759,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776966123.1158066,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51016","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.290826784,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966124.5573363,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38016","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Connection":["keep-alive"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":5.727321283,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776966128.3379173,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42346","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2518"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2518,"user_id":"","duration":23.409670035,"size":2752,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966145.4641957,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38020","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2521"]}},"bytes_read":2521,"user_id":"","duration":24.635431007,"size":2755,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776966152.9519494,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45696","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2805"]}},"bytes_read":2805,"user_id":"","duration":17.341919033,"size":7616,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966170.9025533,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50948","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2518"]}},"bytes_read":2518,"user_id":"","duration":34.1680365,"size":2747,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966180.9344587,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60472","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2519"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2519,"user_id":"","duration":28.009097145,"size":2746,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776966184.2405517,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33730","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":31.269557431,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966192.4273357,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55912","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2529"]}},"bytes_read":2529,"user_id":"","duration":23.168441373,"size":2762,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776966201.2079146,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47988","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":26.226983433,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966202.5823874,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60456","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.622355252,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966209.3756492,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45868","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"],"Accept":["*/*"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2520,"user_id":"","duration":23.744072346,"size":2751,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776966227.2500536,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60470","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"]}},"bytes_read":2520,"user_id":"","duration":25.362924012,"size":2759,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776966232.3153634,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52696","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2810"]}},"bytes_read":2810,"user_id":"","duration":18.787847395,"size":7621,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966242.0496356,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38508","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2517"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2517,"user_id":"","duration":25.877035928,"size":2751,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776966256.8207178,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36166","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2527"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2527,"user_id":"","duration":23.543411392,"size":2756,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776966259.6205788,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43064","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":27.280262319,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966273.8648264,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34796","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2519"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2519,"user_id":"","duration":24.199924417,"size":2765,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966281.0497794,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34758","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.725753365,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776966282.3696473,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34796","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":6.028712911,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966291.2391932,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40822","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2522"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2522,"user_id":"","duration":25.191120948,"size":2757,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776966306.650664,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34796","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2521,"user_id":"","duration":24.016205101,"size":2753,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776966310.7427454,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"48950","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2809"]}},"bytes_read":2809,"user_id":"","duration":17.781408405,"size":7620,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966323.138437,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59312","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":25.476760181,"size":2752,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776966337.9776638,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33776","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":27.210601657,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776966338.3418,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58646","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2531"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Accept":["*/*"]}},"bytes_read":2531,"user_id":"","duration":24.102928026,"size":2752,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776966354.3853946,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38144","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2519"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2519,"user_id":"","duration":23.53842225,"size":2751,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966358.7039435,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52956","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":25.922519443,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966361.3216174,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38144","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":6.547261803,"size":172,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776966369.5849879,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43942","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2523"],"Content-Type":["application/json"]}},"bytes_read":2523,"user_id":"","duration":22.638327192,"size":2759,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776966387.1783838,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38144","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2514"]}},"bytes_read":2514,"user_id":"","duration":24.412414,"size":2752,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776966389.014172,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"54710","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2805"]}},"bytes_read":2805,"user_id":"","duration":17.350971121,"size":7616,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776966400.7830408,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43266","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"],"Content-Type":["application/json"],"Accept":["*/*"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"]}},"bytes_read":2520,"user_id":"","duration":22.624311428,"size":2750,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776966414.714133,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40942","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":25.677979997,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} -{"level":"info","ts":1776966416.1018822,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54022","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2523"]}},"bytes_read":2523,"user_id":"","duration":21.313082514,"size":2757,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776966432.8903308,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48260","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2523"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2523,"user_id":"","duration":22.282251878,"size":2758,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966436.96977,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51880","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":25.931532331,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776966438.2939723,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48260","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.270690547,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966450.8465185,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46062","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2530"]}},"bytes_read":2530,"user_id":"","duration":23.891814241,"size":2763,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776966465.2036471,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52312","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2530"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2530,"user_id":"","duration":22.385777029,"size":2761,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776966467.3160274,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46320","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2820"]}},"bytes_read":2820,"user_id":"","duration":17.50232159,"size":7641,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966482.5734785,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52762","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2523"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"User-Agent":["node"]}},"bytes_read":2523,"user_id":"","duration":23.92378936,"size":2758,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776966493.8073473,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36578","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.486416613,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966497.9351974,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53104","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Content-Length":["2520"],"Connection":["keep-alive"]}},"bytes_read":2520,"user_id":"","duration":23.167325756,"size":2757,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776966515.0410364,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39070","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":25.704429973,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966516.7846768,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38598","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["2522"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2522,"user_id":"","duration":26.161732701,"size":2761,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776966518.7205195,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39870","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":7.385534995,"size":172,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776966533.649516,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39862","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2529"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Connection":["keep-alive"]}},"bytes_read":2529,"user_id":"","duration":26.655656807,"size":2761,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776966544.7781045,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"54532","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2806"],"Accept":["application/json"]}},"bytes_read":2806,"user_id":"","duration":18.198622698,"size":7617,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776966548.472372,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"32880","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2523"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":2523,"user_id":"","duration":25.63150518,"size":2751,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776966563.6655173,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34786","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2518"]}},"bytes_read":2518,"user_id":"","duration":24.918542351,"size":2755,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776966572.5854287,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36548","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":27.806564041,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966580.87184,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59768","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2529"]}},"bytes_read":2529,"user_id":"","duration":25.810293472,"size":2760,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776966592.7975438,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60834","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.008351316,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776966595.2857995,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34216","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":6.517373665,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966597.2206829,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57282","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2531"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2531,"user_id":"","duration":25.544550055,"size":2761,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776966611.3596144,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34212","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2528"]}},"bytes_read":2528,"user_id":"","duration":23.546096434,"size":2760,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776966622.124194,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51772","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2808"]}},"bytes_read":2808,"user_id":"","duration":17.68845315,"size":7619,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966628.3273757,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59724","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2521,"user_id":"","duration":24.929569445,"size":2758,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776966644.9411428,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47954","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Content-Length":["2519"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2519,"user_id":"","duration":25.187874215,"size":2761,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776966648.094667,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44216","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":25.946494214,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966662.2190645,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47428","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2533"]}},"bytes_read":2533,"user_id":"","duration":26.130015426,"size":2761,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776966671.9574196,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47428","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":5.819476055,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966672.1859515,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57772","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":28.062313137,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776966674.329383,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40374","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2521,"user_id":"","duration":21.213931818,"size":2751,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776966693.1198225,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36696","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"],"Content-Type":["application/json"],"Accept-Language":["*"]}},"bytes_read":2520,"user_id":"","duration":23.387417692,"size":2760,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776966698.641211,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59964","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2805"]}},"bytes_read":2805,"user_id":"","duration":15.834712541,"size":7616,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966705.744903,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51382","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2520"]}},"bytes_read":2520,"user_id":"","duration":21.670193612,"size":2757,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776966723.9974706,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36984","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":25.334236117,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966726.6944437,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46952","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2529"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2529,"user_id":"","duration":25.764015071,"size":2831,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776966740.1696155,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33498","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2531"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":2531,"user_id":"","duration":23.10934446,"size":2835,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776966746.3768377,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58720","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":25.698397454,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966748.6072602,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33498","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.941874648,"size":172,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776966758.7679572,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55388","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2533"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2533,"user_id":"","duration":25.048414713,"size":2837,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776966773.2832978,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33498","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2532"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2532,"user_id":"","duration":23.606433801,"size":2836,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776966775.7253294,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2808"]}},"bytes_read":2808,"user_id":"","duration":16.225960293,"size":7619,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966790.662782,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43642","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2520"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2520,"user_id":"","duration":25.295514214,"size":2819,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776966803.7961473,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37638","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Length":["163"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":163,"user_id":"","duration":28.054790677,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966805.8116512,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59546","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2519"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2519,"user_id":"","duration":24.108232158,"size":2824,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966822.418707,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55346","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2522"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept-Language":["*"]}},"bytes_read":2522,"user_id":"","duration":24.826915767,"size":2831,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776966824.282272,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39948","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.572251147,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966825.6013587,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42626","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":5.893431207,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966837.0744975,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43334","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2520"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":2520,"user_id":"","duration":23.325145148,"size":2823,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776966852.6250863,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59518","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2809"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2809,"user_id":"","duration":17.612567611,"size":7620,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966854.6642525,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51666","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2533"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2533,"user_id":"","duration":24.826211216,"size":2837,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776966870.9291298,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36402","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2532"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2532,"user_id":"","duration":25.033012706,"size":2832,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776966878.4202688,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33150","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Length":["163"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":163,"user_id":"","duration":25.771414418,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966885.4944928,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53582","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2519"]}},"bytes_read":2519,"user_id":"","duration":23.750820403,"size":2827,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966900.6397383,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56626","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":25.973073013,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776966901.3807025,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55496","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2523"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":2523,"user_id":"","duration":23.781075655,"size":2831,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776966902.8431647,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58402","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"Connection":["keep-alive"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.179713676,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966917.8700647,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53002","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2522,"user_id":"","duration":24.160355383,"size":2826,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966927.8732677,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41546","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2809"],"Accept":["application/json"]}},"bytes_read":2809,"user_id":"","duration":15.965220165,"size":7620,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966933.2183623,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54500","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Content-Length":["2522"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2522,"user_id":"","duration":23.713576765,"size":2838,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966947.607255,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38044","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2522,"user_id":"","duration":21.978009257,"size":2821,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776966954.7126749,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58896","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.815845992,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966964.142584,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47922","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["2515"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2515,"user_id":"","duration":22.454341702,"size":2823,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776966975.3099666,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"35994","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":25.433876159,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966977.7778,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56860","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Content-Type":["application/json"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.893585365,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776966982.321587,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39318","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Connection":["keep-alive"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["2534"]}},"bytes_read":2534,"user_id":"","duration":24.054150265,"size":2832,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967000.049948,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56876","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2521"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2521,"user_id":"","duration":25.434819085,"size":2828,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967003.5863795,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52846","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2811"]}},"bytes_read":2811,"user_id":"","duration":15.068357228,"size":7622,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967013.5276966,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36458","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["2524"]}},"bytes_read":2524,"user_id":"","duration":23.660443516,"size":2824,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967028.853737,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44526","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2519"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2519,"user_id":"","duration":22.888869691,"size":2820,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967030.239931,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33156","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.619539069,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967044.5100372,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47914","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2524"]}},"bytes_read":2524,"user_id":"","duration":22.918341012,"size":2828,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967052.3951724,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"35180","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":26.75672535,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776967055.6320262,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47914","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":8.003902993,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967061.8294537,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58044","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2529"]}},"bytes_read":2529,"user_id":"","duration":24.15788526,"size":2831,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967077.191095,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60884","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2527"]}},"bytes_read":2527,"user_id":"","duration":23.333350276,"size":2831,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967091.8646302,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"48190","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2806"]}},"bytes_read":2806,"user_id":"","duration":27.418044606,"size":7617,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776967093.185119,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49142","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["366"],"Accept":["application/json"]}},"bytes_read":366,"user_id":"","duration":8.738768362,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967114.617079,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60158","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2522"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2522,"user_id":"","duration":46.381090681,"size":2831,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967132.9978578,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34038","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Length":["163"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":163,"user_id":"","duration":39.760568088,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967139.0841885,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41864","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["2532"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2532,"user_id":"","duration":54.073452796,"size":2837,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776967143.1793082,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38572","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.977337594,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967148.6384013,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60280","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2531"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":2531,"user_id":"","duration":47.246141391,"size":2835,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967152.2309065,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60158","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2518"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":2518,"user_id":"","duration":33.733317853,"size":2820,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967156.0091698,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"54248","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":40.785323805,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967156.9690056,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53534","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2521"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2521,"user_id":"","duration":21.780801456,"size":2829,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967159.3561306,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59948","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2806"]}},"bytes_read":2806,"user_id":"","duration":17.105926456,"size":7617,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967165.9072566,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43898","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":6.294001135,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967174.8609822,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44968","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Type":["application/json"],"User-Agent":["node"],"Content-Length":["2533"]}},"bytes_read":2533,"user_id":"","duration":23.051205973,"size":2832,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967190.968992,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43898","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2531"],"Content-Type":["application/json"]}},"bytes_read":2531,"user_id":"","duration":23.185616102,"size":2831,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776967194.0316164,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44494","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2810"]}},"bytes_read":2810,"user_id":"","duration":18.138675348,"size":7621,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967209.0427334,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59432","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["2534"]}},"bytes_read":2534,"user_id":"","duration":25.431110549,"size":2833,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776967220.351906,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.273300384,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967225.5593364,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38438","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2532"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":2532,"user_id":"","duration":25.846836147,"size":2844,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776967242.5678313,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47254","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.521066472,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967244.1418629,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58384","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.08562506,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967244.7395031,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52904","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2522"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"]}},"bytes_read":2522,"user_id":"","duration":28.794070417,"size":2832,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967258.143194,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55332","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Content-Length":["2522"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2522,"user_id":"","duration":26.549991716,"size":2832,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967272.3088653,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2810"]}},"bytes_read":2810,"user_id":"","duration":17.453677857,"size":7621,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967272.9333966,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52904","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2519"]}},"bytes_read":2519,"user_id":"","duration":25.233415237,"size":2830,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967298.6092248,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36148","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2520,"user_id":"","duration":35.05807842,"size":2832,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967306.6159303,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40084","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Length":["163"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":163,"user_id":"","duration":34.288975753,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967310.4083855,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44254","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept-Language":["*"],"Content-Length":["2522"],"Connection":["keep-alive"]}},"bytes_read":2522,"user_id":"","duration":30.439405954,"size":2838,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967319.814894,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49362","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["2526"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2526,"user_id":"","duration":24.004990216,"size":2828,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776967320.135861,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42982","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":25.858935801,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776967324.0982847,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57398","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":7.76127346,"size":172,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776967338.5180357,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41762","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"]}},"bytes_read":2522,"user_id":"","duration":26.525450451,"size":2837,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967352.8262386,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49844","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2817"]}},"bytes_read":2817,"user_id":"","duration":20.150446106,"size":7638,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776967353.7508862,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57398","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Content-Length":["2519"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2519,"user_id":"","duration":26.176318954,"size":2836,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776967354.3357556,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41434","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":1.653231122,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967371.4713898,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45764","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2518"]}},"bytes_read":2518,"user_id":"","duration":27.757825199,"size":2846,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776967380.2180052,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41446","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":25.860938347,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776967384.5865476,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52064","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"],"Connection":["keep-alive"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2521,"user_id":"","duration":24.805155123,"size":2849,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967402.197271,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33202","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":25.833623679,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967403.3947387,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43304","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2518"]}},"bytes_read":2518,"user_id":"","duration":27.699341692,"size":2878,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776967403.924503,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44788","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":5.580158205,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776967420.160738,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46322","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["2531"]}},"bytes_read":2531,"user_id":"","duration":28.274028239,"size":2893,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776967424.4317863,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"53614","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["345"],"Accept":["application/json"]}},"bytes_read":345,"user_id":"","duration":1.10455991,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776967426.1671011,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2817"]}},"bytes_read":2817,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776967438.1353562,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54706","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2526"]}},"bytes_read":2526,"user_id":"","duration":30.369015111,"size":2887,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776967444.4345639,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"53620","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2817"]}},"bytes_read":2817,"user_id":"","duration":19.714966169,"size":8154,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776967450.4640589,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48672","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.026103757,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967452.7771184,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46322","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2531"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2531,"user_id":"","duration":28.9055053,"size":2890,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776967467.9250278,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54706","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Content-Length":["2532"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2532,"user_id":"","duration":28.137125086,"size":2903,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967478.3857784,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50674","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2807"]}},"bytes_read":2807,"user_id":"","duration":18.91185909,"size":8134,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967483.3453157,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46322","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["2529"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2529,"user_id":"","duration":27.620915794,"size":2892,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967498.2407837,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54706","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2522,"user_id":"","duration":26.643406371,"size":2890,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967505.4681215,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50428","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":27.054992992,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967514.68466,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36234","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2520,"user_id":"","duration":27.003192946,"size":2886,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967526.6431136,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56418","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.213576113,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967528.2240462,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35640","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.808821002,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967529.4187436,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33046","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"],"Connection":["keep-alive"]}},"bytes_read":2520,"user_id":"","duration":25.877389347,"size":2894,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776967545.3742619,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35632","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Connection":["keep-alive"],"Accept":["*/*"]}},"bytes_read":2522,"user_id":"","duration":25.962501546,"size":2893,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776967555.6552346,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51936","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2809"]}},"bytes_read":2809,"user_id":"","duration":17.919053936,"size":8136,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967564.1380682,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35102","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2522"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2522,"user_id":"","duration":28.384043514,"size":2884,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967577.6505134,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50420","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2522"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2522,"user_id":"","duration":26.022915548,"size":2888,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776967582.6468058,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52932","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.968486774,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776967592.8053122,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35102","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2522,"user_id":"","duration":25.086126691,"size":2893,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776967603.651085,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":25.998200185,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967604.9970264,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40756","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["76"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":5.342662925,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967609.141124,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45074","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":25.516547673,"size":2888,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776967623.6051106,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40760","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2521"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2521,"user_id":"","duration":23.866091767,"size":2892,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967636.0804808,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58786","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2806"]}},"bytes_read":2806,"user_id":"","duration":19.675200624,"size":8133,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776967642.310134,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57178","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2519"],"Connection":["keep-alive"]}},"bytes_read":2519,"user_id":"","duration":26.68767552,"size":2882,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967657.1276934,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52076","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2523"]}},"bytes_read":2523,"user_id":"","duration":25.385992029,"size":2894,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776967662.1356502,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"53900","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.031970995,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967674.4560027,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36734","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["2519"]}},"bytes_read":2519,"user_id":"","duration":26.790828947,"size":2881,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967685.308145,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44758","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":27.187774181,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967685.3085244,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37390","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":5.190257187,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967689.4455683,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33468","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2518"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2518,"user_id":"","duration":25.550774651,"size":2882,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967705.732101,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37386","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2521,"user_id":"","duration":25.858753042,"size":2894,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776967714.5314975,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43040","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2810"]}},"bytes_read":2810,"user_id":"","duration":18.036202625,"size":8137,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776967721.9129393,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50474","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["2523"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2523,"user_id":"","duration":26.196553309,"size":2887,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967737.5480168,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51234","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2522"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2522,"user_id":"","duration":25.698758816,"size":2882,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776967740.5290365,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51224","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":25.974821786,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967752.5543082,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34472","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2531"]}},"bytes_read":2531,"user_id":"","duration":24.613591801,"size":2887,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967762.4512656,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49790","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":25.888698757,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776967764.0971315,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38656","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":5.559286365,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967770.595299,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53664","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2525"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2525,"user_id":"","duration":26.736141477,"size":2893,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776967786.0201528,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38666","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2522,"user_id":"","duration":26.28630762,"size":2887,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967792.4023232,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43724","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2807"]}},"bytes_read":2807,"user_id":"","duration":17.080464396,"size":8134,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967800.8585217,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42908","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"]}},"bytes_read":2520,"user_id":"","duration":25.275369235,"size":2880,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967816.737522,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41618","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Content-Length":["2524"],"Connection":["keep-alive"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"]}},"bytes_read":2524,"user_id":"","duration":24.824282959,"size":2886,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776967818.4510157,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36570","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":26.046403753,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} -{"level":"info","ts":1776967833.0931218,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42558","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":2520,"user_id":"","duration":25.330081801,"size":2881,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967840.0718179,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"32890","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":25.674539879,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967842.7477133,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42558","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":6.365296987,"size":172,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776967848.5336118,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46080","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"Content-Length":["2523"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2523,"user_id":"","duration":24.861419354,"size":2888,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967866.9683764,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52436","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2521,"user_id":"","duration":27.184017451,"size":2885,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776967873.4168634,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"53866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2808"],"Accept":["application/json"]}},"bytes_read":2808,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776967874.9169443,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40174","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["366"],"Accept":["application/json"]}},"bytes_read":366,"user_id":"","duration":1.688349281,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967882.7070088,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60250","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2521"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2521,"user_id":"","duration":27.853219059,"size":2885,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967899.188834,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54992","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2521,"user_id":"","duration":28.519326047,"size":2879,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776967901.2291338,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40176","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.290411544,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967915.9562407,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53664","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2528"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"]}},"bytes_read":2528,"user_id":"","duration":28.685287292,"size":2891,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967923.425364,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52526","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.468494531,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776967925.8998837,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53664","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.943500165,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967931.1794512,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51688","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2526"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2526,"user_id":"","duration":27.073297271,"size":2888,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967943.313834,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37144","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2808"]}},"bytes_read":2808,"user_id":"","duration":19.341905272,"size":8135,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967947.7775648,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59430","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2523"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2523,"user_id":"","duration":27.009037809,"size":2889,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776967949.9726093,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39704","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.403212603,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776967964.4147568,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39696","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["2531"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"]}},"bytes_read":2531,"user_id":"","duration":27.805414583,"size":2885,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776967978.224115,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52566","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2808"]}},"bytes_read":2808,"user_id":"","duration":18.306168628,"size":8135,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} -{"level":"info","ts":1776967979.2918057,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39704","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2531"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2531,"user_id":"","duration":26.326673859,"size":2889,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776967993.9788592,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36874","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2529"]}},"bytes_read":2529,"user_id":"","duration":25.40628498,"size":2890,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776968004.6821773,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47562","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.42988147,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776968012.7250705,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53456","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Length":["2523"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2523,"user_id":"","duration":27.991199725,"size":2887,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776968027.6243129,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37164","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":27.380514929,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776968028.960094,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58190","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.722288209,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776968030.5190346,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34216","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2532"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2532,"user_id":"","duration":29.913796367,"size":2904,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776968045.9725542,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58184","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2532"]}},"bytes_read":2532,"user_id":"","duration":29.222751373,"size":2920,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776968059.993193,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37952","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":1.241073891,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776968062.1798987,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34216","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2530"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"]}},"bytes_read":2530,"user_id":"","duration":29.532303267,"size":2926,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776968064.031264,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57818","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2804"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2804,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776968078.7752225,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58184","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2533"]}},"bytes_read":2533,"user_id":"","duration":29.961862384,"size":2948,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776968086.3073623,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37956","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.31276223,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776968095.4901793,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34216","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2531"]}},"bytes_read":2531,"user_id":"","duration":30.757530989,"size":2937,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776968109.077297,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33080","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":27.072339002,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776968110.2629483,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44434","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":6.263938409,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776968111.9468274,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58184","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2522,"user_id":"","duration":31.321003765,"size":2935,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776968127.2990646,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34216","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"]}},"bytes_read":2520,"user_id":"","duration":30.28843963,"size":2938,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776968130.343646,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57496","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.316703557,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776968131.4525251,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37160","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2804"],"Accept":["application/json"]}},"bytes_read":2804,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776968143.5834785,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58184","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2522"],"Connection":["keep-alive"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2522,"user_id":"","duration":30.801886643,"size":2932,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776968151.7923887,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43244","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.196687748,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776968152.074322,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57502","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2804"],"Accept":["application/json"]}},"bytes_read":2804,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776968157.3582208,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33308","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.562775361,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776968158.766414,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34216","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2521,"user_id":"","duration":30.072971921,"size":2936,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776968174.850174,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58184","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2522,"user_id":"","duration":30.333910364,"size":2939,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776968189.5378668,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34216","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["2519"],"Content-Type":["application/json"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2519,"user_id":"","duration":28.898875087,"size":2942,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"error","ts":1776968189.8121283,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40212","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":1.493539662,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776968189.8310263,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"48996","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2837"]}},"bytes_read":2837,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776968205.434637,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58184","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2512"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2512,"user_id":"","duration":28.722826586,"size":2930,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776968216.2727542,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40220","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Length":["163"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":163,"user_id":"","duration":26.438745455,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776968222.9239028,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34216","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2522,"user_id":"","duration":30.360494415,"size":2938,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776968239.0174134,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58184","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["2522"],"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2522,"user_id":"","duration":30.364152051,"size":2940,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776968239.226246,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50336","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":27.394033661,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776968240.1685615,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58290","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":6.349131476,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776968252.8369703,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34216","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Content-Length":["2522"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2522,"user_id":"","duration":28.076607185,"size":2930,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776968259.038055,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33514","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2804"]}},"bytes_read":2804,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776968260.3913221,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36382","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.568006645,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776968268.6758783,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58184","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Length":["2519"],"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2519,"user_id":"","duration":28.079667046,"size":2934,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776968281.6666284,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36398","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2804"]}},"bytes_read":2804,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776968281.7457328,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41606","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.078068127,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776968287.33239,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47342","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.584362733,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776968287.4240887,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34216","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2521"]}},"bytes_read":2521,"user_id":"","duration":30.740330789,"size":2942,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776968303.320362,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36706","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2513"]}},"bytes_read":2513,"user_id":"","duration":30.522877326,"size":2934,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776968317.9966755,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34216","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2523"],"Content-Type":["application/json"]}},"bytes_read":2523,"user_id":"","duration":29.392770046,"size":2944,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776968319.2583222,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51714","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":0.953403782,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776968319.7366028,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41750","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2839"]}},"bytes_read":2839,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776968335.3940325,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36706","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Content-Length":["2517"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":2517,"user_id":"","duration":31.098243155,"size":2939,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776968345.1991632,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51724","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":25.926565847,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776968352.6152735,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34216","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2521,"user_id":"","duration":31.968007363,"size":2941,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776968369.446874,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52798","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":28.158892284,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776968369.5178802,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52748","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.244132029,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776968370.2397108,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36706","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2523"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2523,"user_id":"","duration":33.392246769,"size":2943,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776968383.246041,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34216","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2522,"user_id":"","duration":30.283351863,"size":2940,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"error","ts":1776968389.3385913,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"35092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["345"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":345,"user_id":"","duration":1.066939167,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776968390.3034837,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40572","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2804"]}},"bytes_read":2804,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776968401.906743,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55990","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2519"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Type":["application/json"],"Accept-Language":["*"]}},"bytes_read":2519,"user_id":"","duration":33.322735595,"size":2945,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776968415.3542747,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42920","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":5.7376795,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"]}} -{"level":"info","ts":1776968420.6259902,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"35098","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2804"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2804,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776968423.1064494,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58950","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":7.73508924,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776968423.9350393,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34216","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["2531"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2531,"user_id":"","duration":39.011838547,"size":2949,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776968448.7545645,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44472","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2520"],"Content-Type":["application/json"],"Accept-Language":["*"]}},"bytes_read":2520,"user_id":"","duration":47.874802475,"size":2940,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776968458.659164,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43346","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":6.718561468,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} -{"level":"error","ts":1776968534.229183,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43516","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["345"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":345,"user_id":"","duration":6.553827038,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776968556.8460386,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49458","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":98.126509565,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776968561.0493245,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":6.543504132,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776968565.531108,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58174","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2532"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"]}},"bytes_read":2532,"user_id":"","duration":148.274704201,"size":3007,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776968569.1422763,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40660","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":66.444581051,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776968572.3203387,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40968","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":91.606172698,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"error","ts":1776968644.3436694,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43946","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Content-Length":["2526"]}},"bytes_read":2526,"user_id":"","duration":25.156667161,"size":140,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776968732.8488395,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36304","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":171.678620766,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776968780.7895327,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45328","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2833"]}},"bytes_read":2833,"user_id":"","duration":0,"size":3919,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776968839.2212284,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47498","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Length":["163"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":163,"user_id":"","duration":230.935735391,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776968850.5075622,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"48730","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":220.245290369,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776968917.052652,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58970","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2804"]}},"bytes_read":2804,"user_id":"","duration":229.5115629,"size":134,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776968918.8876417,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43414","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":164.35816007,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776968921.91302,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38130","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":269.632770097,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776968924.6644206,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56764","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":247.333526759,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776968925.167779,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47756","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Content-Length":["2516"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":2516,"user_id":"","duration":491.487288632,"size":2979,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776968929.0863774,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36724","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":221.537873421,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776968950.598554,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33604","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["76"],"Content-Type":["application/json"]}},"bytes_read":76,"user_id":"","duration":233.044940849,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776968995.280684,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41744","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":186.716704622,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776969023.5046875,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43532","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2804"],"Accept":["application/json"]}},"bytes_read":2804,"user_id":"","duration":0,"size":3919,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969033.9862819,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46282","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2804"]}},"bytes_read":2804,"user_id":"","duration":0,"size":3919,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776969034.6425483,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44472","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"Content-Length":["2534"]}},"bytes_read":2534,"user_id":"","duration":584.018573513,"size":3015,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969035.1777534,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58072","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2849"],"Accept":["application/json"]}},"bytes_read":2849,"user_id":"","duration":0,"size":3919,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776969036.2491992,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"48426","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":437.832432014,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776969037.0973408,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36948","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":173.304936284,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969037.2787352,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42078","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Content-Length":["2526"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":2526,"user_id":"","duration":569.824069153,"size":3010,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776969043.084925,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40048","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2530"]}},"bytes_read":2530,"user_id":"","duration":558.534812023,"size":3010,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969046.4886494,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37422","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2804"]}},"bytes_read":2804,"user_id":"","duration":0,"size":3919,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969047.1867015,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40654","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Content-Length":["2532"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2532,"user_id":"","duration":545.546234538,"size":2999,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969050.0816476,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59554","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2848"]}},"bytes_read":2848,"user_id":"","duration":0,"size":3919,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969052.1934094,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43220","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2531"]}},"bytes_read":2531,"user_id":"","duration":516.633503912,"size":3040,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776969054.4056196,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34452","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2525"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2525,"user_id":"","duration":501.762374036,"size":3032,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776969054.444692,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":289.779559741,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969060.2838745,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57900","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Content-Length":["2531"]}},"bytes_read":2531,"user_id":"","duration":423.664456792,"size":3036,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969062.4605415,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44952","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Content-Length":["2527"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2527,"user_id":"","duration":543.97538876,"size":3024,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776969063.2907124,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51622","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["366"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":366,"user_id":"","duration":152.463622318,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969064.1604123,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"32810","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2531"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2531,"user_id":"","duration":325.769955475,"size":3037,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969065.4782474,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58174","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2532"]}},"bytes_read":2532,"user_id":"","duration":496.014448564,"size":3037,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776969066.79124,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37524","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Content-Length":["2525"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2525,"user_id":"","duration":362.315570422,"size":3037,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776969066.7932215,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38134","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Connection":["keep-alive"],"Accept":["*/*"],"Content-Length":["2532"]}},"bytes_read":2532,"user_id":"","duration":413.344831283,"size":3037,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776969067.639751,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60294","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":234.053088959,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776969070.0489278,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33612","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2531"]}},"bytes_read":2531,"user_id":"","duration":348.499809573,"size":3037,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776969070.390401,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"53278","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":283.745388488,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776969071.5625205,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"48404","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["345"],"Accept":["application/json"]}},"bytes_read":345,"user_id":"","duration":81.808736468,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969073.9372306,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46226","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":109.155161803,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776969075.591664,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50394","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":55.603517323,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776969077.1676962,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52734","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":203.344587101,"size":172,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776969082.207721,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33510","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2533"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2533,"user_id":"","duration":326.745483683,"size":2983,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969082.3724477,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38624","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["2531"]}},"bytes_read":2531,"user_id":"","duration":190.98317429,"size":2984,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969084.070635,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57004","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2532"],"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2532,"user_id":"","duration":311.782337301,"size":2984,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969086.8883958,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46218","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2532"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2532,"user_id":"","duration":127.667325379,"size":2984,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969089.1042626,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37014","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["2532"],"Connection":["keep-alive"],"Accept-Language":["*"]}},"bytes_read":2532,"user_id":"","duration":231.887000029,"size":2984,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776969091.49706,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35194","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2527"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2527,"user_id":"","duration":81.271315314,"size":2984,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776969093.2194905,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37464","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2804"]}},"bytes_read":2804,"user_id":"","duration":0,"size":3919,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969096.0742724,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41396","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2530"],"Connection":["keep-alive"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2530,"user_id":"","duration":510.220660186,"size":2983,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969097.7691832,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52920","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2804"]}},"bytes_read":2804,"user_id":"","duration":0,"size":3919,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969106.437321,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52750","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2532"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2532,"user_id":"","duration":232.136580251,"size":2974,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969107.01725,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53278","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2528"],"Accept":["*/*"]}},"bytes_read":2528,"user_id":"","duration":300.550204526,"size":2974,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969107.27025,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47092","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2532"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2532,"user_id":"","duration":504.830702337,"size":2974,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969109.1195116,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36554","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2804"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2804,"user_id":"","duration":0,"size":3919,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969109.2478843,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"55692","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2840"]}},"bytes_read":2840,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969110.4903047,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46482","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"User-Agent":["node"],"Content-Length":["2532"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":2532,"user_id":"","duration":321.07555018,"size":2976,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776969112.9991622,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54724","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2530"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2530,"user_id":"","duration":289.66725019,"size":2976,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776969113.1272917,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41828","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2523"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2523,"user_id":"","duration":69.035296767,"size":2976,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776969114.159117,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"53828","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["366"],"Accept":["application/json"]}},"bytes_read":366,"user_id":"","duration":47.826241154,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969119.5644782,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33656","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2848"],"Accept":["application/json"]}},"bytes_read":2848,"user_id":"","duration":0,"size":3919,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969120.605184,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48378","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"Content-Length":["2521"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2521,"user_id":"","duration":450.052976707,"size":2980,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969123.486971,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42658","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2530"]}},"bytes_read":2530,"user_id":"","duration":283.073499066,"size":2986,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969126.66128,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46178","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2528"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2528,"user_id":"","duration":439.267314252,"size":2986,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776969126.824379,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34734","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2530"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2530,"user_id":"","duration":218.582780292,"size":2986,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776969130.5260656,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50764","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Content-Length":["2527"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2527,"user_id":"","duration":137.356379897,"size":2976,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969130.7168343,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"48336","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":209.884591099,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776969134.6449609,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58660","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":36.334783493,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776969135.6899152,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45544","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":76,"user_id":"","duration":105.66916392,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969135.7507563,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38130","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2529"]}},"bytes_read":2529,"user_id":"","duration":210.426480976,"size":2980,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969137.2288365,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45000","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2526"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2526,"user_id":"","duration":76.127444454,"size":2977,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969137.5802515,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42068","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":194.756764657,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969139.242,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49120","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Content-Length":["2520"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":2520,"user_id":"","duration":61.437857446,"size":2980,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776969142.6430237,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60404","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":22.252775248,"size":172,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776969144.7983794,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51854","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2533"]}},"bytes_read":2533,"user_id":"","duration":202.611201945,"size":2978,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"error","ts":1776969146.2917807,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"48230","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.017855491,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776969150.4524822,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45542","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2531"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2531,"user_id":"","duration":123.343751684,"size":2976,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969151.3458452,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2804"]}},"bytes_read":2804,"user_id":"","duration":0,"size":3919,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776969151.9857595,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45568","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2804"]}},"bytes_read":2804,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969152.6504157,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37408","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2530"]}},"bytes_read":2530,"user_id":"","duration":41.454460761,"size":2976,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776969155.2068567,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39626","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["2519"],"Connection":["keep-alive"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2519,"user_id":"","duration":61.098434711,"size":2974,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969158.539082,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34732","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2530"]}},"bytes_read":2530,"user_id":"","duration":182.181587748,"size":2980,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969160.2599537,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42328","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Length":["163"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":163,"user_id":"","duration":83.911828257,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969163.508706,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41168","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":35.728695078,"size":2982,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776969167.5389276,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56756","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":0.963845896,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776969168.8673394,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"48232","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2804"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2804,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969175.4044003,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55914","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"Connection":["keep-alive"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":7.840834744,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969178.1837335,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60404","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":34.552255755,"size":2973,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776969193.1767662,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40352","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2534"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2534,"user_id":"","duration":32.976735208,"size":2986,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969205.749012,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40530","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2837"]}},"bytes_read":2837,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776969206.0870507,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42048","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["366"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":366,"user_id":"","duration":1.680648678,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969209.0538826,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55914","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2522"],"Connection":["keep-alive"],"Accept-Language":["*"]}},"bytes_read":2522,"user_id":"","duration":32.402107788,"size":2976,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776969224.8420088,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39470","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Connection":["keep-alive"]}},"bytes_read":2522,"user_id":"","duration":31.779472437,"size":2976,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969233.0144458,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42052","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Length":["163"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":163,"user_id":"","duration":26.901161251,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776969243.0594432,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43174","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2522"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2522,"user_id":"","duration":33.33733152,"size":2983,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969253.8445942,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"54160","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":25.763316996,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969256.281531,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43228","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":6.201576204,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969258.0353653,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39470","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2522"],"Connection":["keep-alive"]}},"bytes_read":2522,"user_id":"","duration":32.431215329,"size":2970,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969272.4559486,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43618","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2517"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2517,"user_id":"","duration":30.371731069,"size":2972,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969274.9501042,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36890","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2804"]}},"bytes_read":2804,"user_id":"","duration":19.845116648,"size":9166,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776969289.359596,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39470","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2519"],"Content-Type":["application/json"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"]}},"bytes_read":2519,"user_id":"","duration":30.422004423,"size":2975,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969294.5610862,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44784","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2837"]}},"bytes_read":2837,"user_id":"","duration":19.594548403,"size":9417,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776969304.3348825,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41714","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Content-Length":["2518"],"Connection":["keep-alive"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"]}},"bytes_read":2518,"user_id":"","duration":29.517258562,"size":2974,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776969315.8448565,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50702","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.300738801,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969315.9957764,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57874","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2839"],"Accept":["application/json"]}},"bytes_read":2839,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776969321.7584727,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39470","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":31.093637513,"size":2975,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969335.7432225,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50714","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2839"]}},"bytes_read":2839,"user_id":"","duration":19.620423953,"size":9419,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969336.6027722,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41714","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2530"],"Connection":["keep-alive"],"Accept":["*/*"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2530,"user_id":"","duration":29.586513508,"size":2982,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969351.9849336,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39470","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2529"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"]}},"bytes_read":2529,"user_id":"","duration":29.126961968,"size":2975,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969356.6879516,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58854","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2833"]}},"bytes_read":2833,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776969356.7984664,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"48798","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.041166977,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969365.0053737,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43278","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":8.203921449,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969372.0682914,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41714","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2531"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":2531,"user_id":"","duration":33.355833078,"size":2984,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969389.149365,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39470","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Content-Length":["2531"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2531,"user_id":"","duration":34.308394104,"size":2981,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776969393.62575,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52776","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["366"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":366,"user_id":"","duration":1.17996143,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776969393.8583882,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2839"],"Accept":["application/json"]}},"bytes_read":2839,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776969402.2438405,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38616","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2533"]}},"bytes_read":2533,"user_id":"","duration":31.347988402,"size":2985,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776969417.5484986,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48342","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2522,"user_id":"","duration":30.98906318,"size":2971,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776969420.7442484,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52790","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":27.098772012,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969433.712193,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36492","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2524"],"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2524,"user_id":"","duration":30.815389354,"size":2972,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776969442.033932,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43340","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.383268085,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969443.5620375,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52802","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.933622025,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969449.8257048,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48342","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Content-Length":["2518"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2518,"user_id":"","duration":31.036107314,"size":2973,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776969462.50196,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"53504","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2833"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2833,"user_id":"","duration":19.868529228,"size":9413,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776969464.8779469,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36492","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2517"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2517,"user_id":"","duration":30.237944834,"size":2967,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969482.3368573,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48342","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2530"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2530,"user_id":"","duration":31.570629602,"size":2979,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969483.6521091,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52772","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776969483.9825644,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44788","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.456279615,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969500.32167,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36492","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2519"]}},"bytes_read":2519,"user_id":"","duration":33.693722409,"size":2974,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776969505.6610186,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47118","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.429780322,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969506.770925,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44802","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969511.519465,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45096","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.856049645,"size":172,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} -{"level":"info","ts":1776969515.917763,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48342","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Content-Length":["2518"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2518,"user_id":"","duration":32.959678722,"size":2967,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969528.5223083,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45094","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"]}},"bytes_read":2521,"user_id":"","duration":29.730869984,"size":2975,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969542.9324422,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49890","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2840"]}},"bytes_read":2840,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776969543.1515663,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":0.940591171,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776969546.166182,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45096","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2521"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2521,"user_id":"","duration":31.530163946,"size":2971,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776969561.6015663,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39912","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2523"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2523,"user_id":"","duration":30.86217038,"size":2976,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969573.3819022,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39990","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Length":["163"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":163,"user_id":"","duration":30.210383567,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776969581.9341109,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45096","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["2519"]}},"bytes_read":2519,"user_id":"","duration":35.32993601,"size":2978,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969592.5235145,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48528","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":5.368862633,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969597.7094536,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39912","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2522,"user_id":"","duration":34.984103838,"size":2970,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776969598.397872,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40696","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":33.22027737,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776969608.3649201,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54918","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2529"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2529,"user_id":"","duration":29.323635828,"size":2979,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776969613.5591424,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"35098","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776969613.6217725,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52686","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.474089355,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969626.2561743,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48528","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Length":["2531"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2531,"user_id":"","duration":30.12070344,"size":2980,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776969635.280189,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51378","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["345"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":345,"user_id":"","duration":1.379408238,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"]}} -{"level":"info","ts":1776969636.1615794,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52690","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2849"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969641.260134,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41156","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.97735444,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969644.7272282,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59504","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2519"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2519,"user_id":"","duration":31.770330581,"size":2973,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776969659.539203,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48528","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Content-Length":["2520"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2520,"user_id":"","duration":30.946944094,"size":2978,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776969673.0060213,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51878","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["366"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":366,"user_id":"","duration":1.121799724,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969675.6903925,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"38688","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2835"]}},"bytes_read":2835,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776969676.143733,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41156","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2520,"user_id":"","duration":31.50352982,"size":2970,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969692.8010445,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48528","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":32.058884814,"size":2978,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969698.8875875,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51890","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":25.8608328,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969706.1612566,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49838","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":29.605291132,"size":2970,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969720.4887168,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36006","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":25.441735326,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969722.5988991,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52462","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"User-Agent":["node"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":5.564133529,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969723.1352806,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44216","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2520"]}},"bytes_read":2520,"user_id":"","duration":30.459077643,"size":2972,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969740.526972,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60898","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2523"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2523,"user_id":"","duration":31.752910852,"size":2978,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776969742.997936,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44578","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":0.956682017,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776969745.1844726,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45150","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969755.2951636,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52462","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2523"]}},"bytes_read":2523,"user_id":"","duration":30.657377762,"size":2977,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969763.980132,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44582","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776969764.9585712,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60352","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["345"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":345,"user_id":"","duration":1.719127381,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776969770.8916945,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58620","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.907542672,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969771.4839928,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60898","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2532"],"Content-Type":["application/json"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Connection":["keep-alive"]}},"bytes_read":2532,"user_id":"","duration":30.243313208,"size":2982,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776969787.588475,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52462","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2531"],"Connection":["keep-alive"]}},"bytes_read":2531,"user_id":"","duration":30.042015325,"size":2980,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969802.8146737,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"38856","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2844"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2844,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776969802.9011576,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":1.175745266,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776969803.08111,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60898","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2518"]}},"bytes_read":2518,"user_id":"","duration":29.425204836,"size":2974,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969818.8186326,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52462","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"User-Agent":["node"],"Content-Length":["2519"]}},"bytes_read":2519,"user_id":"","duration":29.070090086,"size":2973,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776969828.478176,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50098","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":25.575908486,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969835.0520484,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60898","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2526"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":2526,"user_id":"","duration":29.207821541,"size":2973,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969850.8376236,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37322","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":25.925164288,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776969850.8962326,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52462","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"]}},"bytes_read":2521,"user_id":"","duration":29.254684194,"size":2973,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969852.5343344,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54926","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":5.614043387,"size":172,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776969868.7158477,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60898","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2519"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2519,"user_id":"","duration":30.714387428,"size":2970,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776969873.6816359,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58884","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.735843193,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969874.3822718,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969885.1115255,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52462","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["2521"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2521,"user_id":"","duration":31.528364041,"size":2972,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969895.131454,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776969895.6557233,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34934","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.713212007,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969898.414147,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60898","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"]}},"bytes_read":2520,"user_id":"","duration":28.658634094,"size":2980,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776969901.9712558,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35634","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.313148209,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776969915.7214885,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52462","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Content-Length":["2530"],"Content-Type":["application/json"]}},"bytes_read":2530,"user_id":"","duration":29.896717557,"size":2975,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776969931.1509705,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60898","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":29.408845187,"size":2975,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969932.3456857,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52256","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2846"]}},"bytes_read":2846,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"error","ts":1776969934.4187768,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50996","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":2.231963591,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776969947.5583584,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52462","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2518"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2518,"user_id":"","duration":31.553099328,"size":2972,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776969961.979414,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51010","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":27.539975264,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} -{"level":"info","ts":1776969985.9383159,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60898","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":54.322858276,"size":2977,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776969986.971859,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50030","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":8.549347701,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776970000.4748166,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"55684","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":44.0252445,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970002.4125948,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52462","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2519"]}},"bytes_read":2519,"user_id":"","duration":54.691090383,"size":2970,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776970004.559734,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37298","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["345"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":345,"user_id":"","duration":1.116144051,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970006.8338294,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"55544","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2849"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970013.6435604,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53920","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2517"]}},"bytes_read":2517,"user_id":"","duration":49.869231763,"size":2975,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776970016.656641,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50044","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Content-Length":["2533"]}},"bytes_read":2533,"user_id":"","duration":36.488921565,"size":2987,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"error","ts":1776970026.3033917,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41810","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.523829831,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970034.479009,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37312","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970034.6229632,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42670","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2519"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":2519,"user_id":"","duration":37.954691269,"size":2968,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776970037.0765204,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56562","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"User-Agent":["node"],"Content-Length":["76"],"Accept":["*/*"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":10.770091777,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776970046.725533,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36888","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2528"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2528,"user_id":"","duration":33.813261345,"size":2974,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776970063.9634595,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41848","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2521,"user_id":"","duration":35.220868596,"size":2974,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776970064.7083364,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"38616","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":1.387966576,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776970067.5327764,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49206","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970080.2831857,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49306","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2530"]}},"bytes_read":2530,"user_id":"","duration":35.289269707,"size":2977,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776970090.8487997,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"38624","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.119382265,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970096.0227675,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51778","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2524"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2524,"user_id":"","duration":35.022645887,"size":2972,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776970112.293806,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46184","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2523"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2523,"user_id":"","duration":35.67579523,"size":2976,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776970114.1351132,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52960","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":27.386504385,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970114.2006261,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54234","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.401139831,"size":172,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776970131.650377,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56498","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Content-Length":["2533"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2533,"user_id":"","duration":38.647831444,"size":2983,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776970134.7429056,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"38190","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["345"],"Accept":["application/json"]}},"bytes_read":345,"user_id":"","duration":1.00118728,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970138.2836382,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56206","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2849"],"Accept":["application/json"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776970141.069002,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54218","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2532"]}},"bytes_read":2532,"user_id":"","duration":32.397234702,"size":2977,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776970156.2638836,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"53302","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.295689692,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"]}} -{"level":"info","ts":1776970161.5415254,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"38204","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2849"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970161.7065654,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56468","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":36.618160336,"size":2977,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776970162.70374,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47532","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["76"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":6.408520369,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970180.1762516,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51106","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":2522,"user_id":"","duration":38.505012046,"size":2973,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776970194.4745421,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"38030","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":1.18453508,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776970198.1507182,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45604","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2518"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2518,"user_id":"","duration":40.198029105,"size":2970,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776970200.3333194,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33900","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2842"]}},"bytes_read":2842,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970209.5189369,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60660","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2513"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2513,"user_id":"","duration":35.736374362,"size":2968,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970221.7166815,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"38032","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":27.217085938,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776970228.2513685,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50686","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Length":["2523"],"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2523,"user_id":"","duration":38.380228418,"size":2982,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776970243.5769782,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57458","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Content-Length":["2533"]}},"bytes_read":2533,"user_id":"","duration":37.613340026,"size":2983,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776970244.3579466,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41218","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":5.905883695,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970246.700437,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"55562","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":30.232818519,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970254.1621025,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44126","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2532"],"Connection":["keep-alive"],"User-Agent":["node"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2532,"user_id":"","duration":32.042394508,"size":2978,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"error","ts":1776970264.5207024,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60440","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["345"],"Accept":["application/json"]}},"bytes_read":345,"user_id":"","duration":1.02048739,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970270.1143088,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58602","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970274.144292,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41224","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2529"],"Connection":["keep-alive"]}},"bytes_read":2529,"user_id":"","duration":35.245960935,"size":2978,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"error","ts":1776970286.3121428,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34114","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.529586715,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776970292.1553948,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60446","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970293.2452824,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42598","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":6.930902526,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970296.3619843,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54632","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2533"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2533,"user_id":"","duration":41.559990506,"size":2979,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776970309.67497,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52216","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2530"],"Connection":["keep-alive"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2530,"user_id":"","duration":38.784090675,"size":2986,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776970323.5153282,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42602","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2533"]}},"bytes_read":2533,"user_id":"","duration":36.298442033,"size":2986,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776970324.14868,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"38868","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":1.051683324,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970331.998952,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52784","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2852"]}},"bytes_read":2852,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970340.7266874,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57478","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Content-Length":["2534"]}},"bytes_read":2534,"user_id":"","duration":36.908360633,"size":2983,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970354.7207823,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"38880","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":30.548408189,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776970358.4958858,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51462","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Content-Length":["2523"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2523,"user_id":"","duration":38.574349963,"size":2986,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776970369.9255848,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44236","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":33.654750891,"size":2975,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776970376.5892346,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34478","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":30.411963838,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776970377.5280626,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36226","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":9.375328851,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970385.0570424,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55004","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2521"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2521,"user_id":"","duration":32.26418934,"size":2970,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776970394.7064815,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52824","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.559059787,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} -{"level":"info","ts":1776970398.6066265,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60056","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776970405.1310441,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36240","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"]}},"bytes_read":2521,"user_id":"","duration":36.470556412,"size":2976,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970416.721821,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49340","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2519"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2519,"user_id":"","duration":31.701988784,"size":2972,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776970416.8721728,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60658","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.88397189,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970420.7707548,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52838","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2849"],"Accept":["application/json"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970426.4927387,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49340","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":9.61795989,"size":172,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776970435.734225,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54852","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2518"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2518,"user_id":"","duration":34.880883275,"size":2972,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776970452.2786117,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55006","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2520,"user_id":"","duration":35.327564681,"size":2974,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776970454.8210914,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47642","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":1.386441446,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970457.4723182,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51668","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2841"]}},"bytes_read":2841,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970468.8908384,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37590","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2521"]}},"bytes_read":2521,"user_id":"","duration":35.796181144,"size":2973,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776970484.9007864,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47654","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Length":["163"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":163,"user_id":"","duration":30.066298028,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970488.3011403,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41374","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2530"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Connection":["keep-alive"]}},"bytes_read":2530,"user_id":"","duration":38.123460646,"size":2988,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776970502.030726,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48114","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2531"],"Connection":["keep-alive"],"Accept":["*/*"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2531,"user_id":"","duration":35.152173262,"size":2980,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776970506.310821,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39844","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":29.45587798,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970509.796369,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48856","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Length":["76"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":10.94763957,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970520.5140514,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36452","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2529"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2529,"user_id":"","duration":37.781383051,"size":2972,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776970525.2925968,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60278","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.435517648,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970527.59985,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56616","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970539.2478726,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48850","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Content-Length":["2532"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":2532,"user_id":"","duration":40.616579223,"size":2981,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776970547.4102654,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43690","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.88039364,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776970554.4665678,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41616","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2525"]}},"bytes_read":2525,"user_id":"","duration":39.234772993,"size":2975,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776970556.0367756,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60288","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970558.5296626,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34274","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":11.102607377,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970571.4688084,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42078","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"],"Connection":["keep-alive"]}},"bytes_read":2520,"user_id":"","duration":39.846074315,"size":2974,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776970585.190912,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37054","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":0.890225695,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970586.8485355,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43390","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Type":["application/json"],"Content-Length":["2514"]}},"bytes_read":2514,"user_id":"","duration":39.145948465,"size":2966,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776970589.8131692,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36634","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2834"]}},"bytes_read":2834,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970597.0386212,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47534","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2527"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"]}},"bytes_read":2527,"user_id":"","duration":32.997183895,"size":2980,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776970610.8333967,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37060","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":25.614503484,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970614.9101636,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34518","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":34.216112685,"size":2974,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776970633.081302,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58444","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":25.888453873,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776970633.2306025,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54048","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2531"],"Content-Type":["application/json"]}},"bytes_read":2531,"user_id":"","duration":36.213759068,"size":2977,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776970634.5629468,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48352","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.368775552,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970646.601759,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48106","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2531"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2531,"user_id":"","duration":33.716996453,"size":2979,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} -{"level":"error","ts":1776970655.1821523,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36536","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":0.962977644,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776970658.4428985,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50758","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776970659.8939772,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48350","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2528"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2528,"user_id":"","duration":30.935785992,"size":2982,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776970677.041233,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"54638","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.571880384,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776970678.1738193,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53488","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["2533"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2533,"user_id":"","duration":33.333533952,"size":2982,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970680.8625548,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36538","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970684.1983628,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58196","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Connection":["keep-alive"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":7.15447009,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970699.5860715,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50428","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2532"],"Content-Type":["application/json"]}},"bytes_read":2532,"user_id":"","duration":38.896597898,"size":2980,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776970712.7310295,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58190","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2532"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2532,"user_id":"","duration":35.916178661,"size":2986,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776970714.5515826,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"54248","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":1.056686371,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970721.4281952,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60570","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2837"],"Accept":["application/json"]}},"bytes_read":2837,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970735.0246482,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41694","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2517"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"]}},"bytes_read":2517,"user_id":"","duration":42.277734237,"size":2972,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776970748.8894355,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46320","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2524"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2524,"user_id":"","duration":40.136999277,"size":2980,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776970749.4459124,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"54264","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Length":["163"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":163,"user_id":"","duration":34.864574659,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970759.0714402,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34568","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":2522,"user_id":"","duration":34.056490755,"size":2975,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970763.2188127,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"48792","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.630193608,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970764.5026097,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48654","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":5.9428294,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970779.3388002,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53396","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2520"],"Connection":["keep-alive"]}},"bytes_read":2520,"user_id":"","duration":38.392390499,"size":2974,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776970784.4259315,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56674","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":0.876903894,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776970796.309653,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36860","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2849"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776970797.8162284,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43724","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2530"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2530,"user_id":"","duration":40.80689419,"size":2975,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776970806.2010522,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58518","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["345"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":345,"user_id":"","duration":1.496597205,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970809.008582,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56800","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2529"],"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2529,"user_id":"","duration":36.152550894,"size":2977,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776970811.603749,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56686","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970813.0627332,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39766","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"Content-Type":["application/json"],"Connection":["keep-alive"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":6.858846582,"size":172,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776970823.5008025,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35440","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Content-Length":["2519"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2519,"user_id":"","duration":34.776812661,"size":2973,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776970837.4073815,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39762","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Type":["application/json"]}},"bytes_read":2520,"user_id":"","duration":32.808258581,"size":2973,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"error","ts":1776970843.8955722,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"55520","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["366"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":366,"user_id":"","duration":1.957694831,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776970849.7761219,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59628","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2839"]}},"bytes_read":2839,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776970861.3025231,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58954","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2519"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2519,"user_id":"","duration":40.44490351,"size":2972,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970873.0271869,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"55536","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":29.106703914,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970877.5146673,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42118","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"Content-Length":["2532"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"]}},"bytes_read":2532,"user_id":"","duration":40.534403915,"size":2985,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776970893.5206432,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35952","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Content-Length":["2532"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":2532,"user_id":"","duration":40.777379346,"size":2978,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776970894.2614486,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"38668","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":28.319972835,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970894.8578584,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60078","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Length":["76"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":6.926938337,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970912.3305247,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36666","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2529"],"Connection":["keep-alive"]}},"bytes_read":2529,"user_id":"","duration":43.393024216,"size":2985,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776970914.7967255,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45226","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.856311146,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970923.9789722,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"53598","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2849"],"Accept":["application/json"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776970924.338421,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40814","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":39.494277359,"size":2978,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776970936.4039593,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49792","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["345"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":345,"user_id":"","duration":1.361398639,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970940.712229,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45238","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970942.5132265,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"32878","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":6.101166321,"size":172,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776970943.5627742,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47540","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Content-Length":["2523"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2523,"user_id":"","duration":42.831821712,"size":2978,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776970950.9317713,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37332","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2533"],"Content-Type":["application/json"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2533,"user_id":"","duration":33.885138632,"size":2987,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776970966.6758082,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"32868","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2533"]}},"bytes_read":2533,"user_id":"","duration":32.629771576,"size":2981,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776970972.3762732,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52776","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":0.971678048,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776970979.5220466,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"53344","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2835"]}},"bytes_read":2835,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776970987.6910017,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47264","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2515"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2515,"user_id":"","duration":36.956092941,"size":2969,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776971002.8595076,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54616","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Content-Length":["2529"],"Content-Type":["application/json"],"Accept-Language":["*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":2529,"user_id":"","duration":36.023262469,"size":2980,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776971003.1451623,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52790","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":30.741729844,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971016.9928656,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55154","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2531"],"Content-Type":["application/json"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2531,"user_id":"","duration":33.919019416,"size":2977,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776971021.4908476,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56948","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":5.104190525,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971022.849516,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33212","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":28.460945601,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971033.6175706,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60272","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":33.915478038,"size":2982,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776971042.5222826,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41962","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.113855927,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971047.4849203,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"32848","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971048.7832615,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56932","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2517"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2517,"user_id":"","duration":32.9501257,"size":2967,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776971064.038048,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33740","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.25662405,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971065.4004698,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48764","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2531"],"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2531,"user_id":"","duration":33.453841335,"size":2979,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971067.0775607,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971069.6802447,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45022","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":5.639526096,"size":172,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971084.539369,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57490","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2519"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Accept":["*/*"]}},"bytes_read":2519,"user_id":"","duration":36.751856589,"size":2980,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971099.6752026,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45006","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2515"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2515,"user_id":"","duration":36.025144014,"size":2971,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776971101.6438468,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33336","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["366"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":366,"user_id":"","duration":0.752930878,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776971103.539128,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41858","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2836"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2836,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971110.6499891,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33434","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["2516"],"Connection":["keep-alive"]}},"bytes_read":2516,"user_id":"","duration":30.498019702,"size":2974,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971127.9747891,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33350","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.304282315,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971128.6436179,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45792","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2532"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2532,"user_id":"","duration":31.516240145,"size":2980,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971149.906277,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39666","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2531"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2531,"user_id":"","duration":36.082835954,"size":2974,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971150.0693166,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39820","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.402201508,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971153.5336049,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50302","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":7.882459077,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971163.0978358,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45792","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2531"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2531,"user_id":"","duration":33.391175675,"size":2985,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"error","ts":1776971172.473659,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43800","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.80961996,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776971175.787205,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37338","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2849"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971180.8942935,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50288","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2532"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"]}},"bytes_read":2532,"user_id":"","duration":35.252062348,"size":2980,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776971194.394051,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"48828","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["345"],"Accept":["application/json"]}},"bytes_read":345,"user_id":"","duration":1.647867629,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971198.2960474,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43810","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971198.4560702,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49742","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Content-Length":["2523"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":2523,"user_id":"","duration":36.663766373,"size":2975,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971201.2739177,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38460","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":6.876348061,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971212.1174042,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40842","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2533"]}},"bytes_read":2533,"user_id":"","duration":33.978424774,"size":2977,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971218.2938638,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"38504","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["node"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept":["*/*"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":1.115564338,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971227.7331102,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38468","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Content-Length":["2518"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2518,"user_id":"","duration":32.943641385,"size":2965,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776971238.7449236,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39466","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["366"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":366,"user_id":"","duration":7.791603039,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776971240.9553392,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"38504","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/install-token","headers":{"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"Content-Length":["58"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"Content-Type":["application/json"],"User-Agent":["node"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":58,"user_id":"","duration":18.075499726,"size":433,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971241.9159594,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"38088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2838"]}},"bytes_read":2838,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971242.2260952,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"38504","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["*/*"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":0,"user_id":"","duration":1.169771914,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971249.801637,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48280","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2518"],"Content-Type":["application/json"],"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2518,"user_id":"","duration":39.147984969,"size":2969,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971266.5954444,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40448","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":27.825365962,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971270.0095148,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59002","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2520"],"Connection":["keep-alive"]}},"bytes_read":2520,"user_id":"","duration":43.216641694,"size":2976,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971272.2772107,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"38504","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-agent/claim","headers":{"User-Agent":["node"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["*"],"X-Forwarded-Server":["153105acad2c"],"Content-Length":["187"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Forwarded-Proto":["http"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":187,"user_id":"","duration":28.748969286,"size":1641,"status":201,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776971274.1571462,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.14","remote_port":"53690","client_ip":"172.20.0.14","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/145/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["181"]}},"bytes_read":181,"user_id":"","duration":1.47294346,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971283.0389924,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54618","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2531"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2531,"user_id":"","duration":39.905469835,"size":2974,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971283.776011,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50816","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/145/validate","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":9.610793355,"size":175,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971288.391982,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37100","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["76"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":5.603909619,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971289.944379,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37116","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/145/backlog","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["64"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":64,"user_id":"","duration":6.163398835,"size":141,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971290.5974803,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49068","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":29.803787625,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971295.525026,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54618","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/145/presence","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["205"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":205,"user_id":"","duration":11.746497885,"size":289,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971296.0526526,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60494","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2526"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2526,"user_id":"","duration":36.040959075,"size":2981,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971301.864248,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"38504","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/145","headers":{"Accept-Encoding":["gzip, deflate"],"Authorization":[],"X-Forwarded-Host":["localhost"],"Accept-Language":["*"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"Accept":["*/*"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":7.668408397,"size":1583,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776971310.0082219,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"53518","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["345"],"Accept":["application/json"]}},"bytes_read":345,"user_id":"","duration":2.208957129,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776971311.7899458,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53538","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/145/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2403"]}},"bytes_read":2403,"user_id":"","duration":17.979324372,"size":2029,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971312.3139608,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50826","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2528"],"Connection":["keep-alive"]}},"bytes_read":2528,"user_id":"","duration":36.573474195,"size":2978,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971312.7042143,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60666","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776971313.6460207,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"38504","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/145","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Server":["153105acad2c"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":11.266177737,"size":2029,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971321.568694,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"38504","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/145","headers":{"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":0,"user_id":"","duration":7.919514142,"size":2029,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776971322.9417126,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58674","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/145/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2494"]}},"bytes_read":2494,"user_id":"","duration":13.927832468,"size":2037,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971327.5710018,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53536","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Type":["application/json"],"Accept":["*/*"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":35.967908213,"size":2974,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776971331.9282987,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33252","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.670382136,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971335.114334,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"38504","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/145/stream-session","headers":{"User-Agent":["node"],"Accept":["*/*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept-Language":["*"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Content-Length":["51"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"Authorization":[],"Content-Type":["application/json"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"]}},"bytes_read":51,"user_id":"","duration":13.513297706,"size":483,"status":201,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776971337.408715,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59104","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971338.1878934,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54304","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":6.25649446,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971340.9905019,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54306","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/browser-streams/validate","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Accept-Language":["*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["327"],"Content-Type":["application/json"]}},"bytes_read":327,"user_id":"","duration":5.870084322,"size":251,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971343.8248448,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41672","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2520"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2520,"user_id":"","duration":35.850762973,"size":2974,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971344.1185327,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39628","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/145/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2494"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":2494,"user_id":"","duration":18.612243179,"size":2038,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971363.4371288,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58674","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2523"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2523,"user_id":"","duration":39.590838863,"size":2976,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971366.1798704,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59234","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/145/telemetry","headers":{"Content-Length":["2493"],"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2493,"user_id":"","duration":25.428145006,"size":2382,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776971369.4755497,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34158","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":1.000119676,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971377.8169327,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51420","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2842"]}},"bytes_read":2842,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971379.1280973,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54304","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Content-Length":["2522"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2522,"user_id":"","duration":39.158331329,"size":2981,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971380.8309326,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57828","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/145/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["2507"]}},"bytes_read":2507,"user_id":"","duration":24.010193317,"size":2435,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971381.2338533,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"38504","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/145/operations","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"Content-Length":["256"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["153105acad2c"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Type":["application/json"]}},"bytes_read":256,"user_id":"","duration":39.680796323,"size":2449,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971387.0133235,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41274","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/145/backlog","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["64"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":64,"user_id":"","duration":13.119770998,"size":735,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971389.309294,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57824","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2533"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2533,"user_id":"","duration":33.472466222,"size":2982,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971395.9280608,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41264","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/145/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2496"]}},"bytes_read":2496,"user_id":"","duration":23.148761264,"size":2491,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971400.803525,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34166","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":31.30484401,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971408.0994196,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41260","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2532"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2532,"user_id":"","duration":36.107074793,"size":2980,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971411.4111016,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34342","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/145/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2496"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2496,"user_id":"","duration":22.971640944,"size":2491,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971416.8303983,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59230","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":25.364572623,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971419.2385666,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34342","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":5.783380681,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971421.420278,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33420","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":33.785354834,"size":2976,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776971421.86498,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41260","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/145/presence","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["node"],"Content-Length":["186"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":186,"user_id":"","duration":10.02650589,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971422.931847,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"38504","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"DELETE","host":"localhost","uri":"/edge-gateways/145","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Host":["localhost"],"User-Agent":["node"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["*"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":10.872855032,"size":102,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971427.537361,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34748","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/145/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Length":["2994"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2994,"user_id":"","duration":27.255679454,"size":2597,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776971429.5915542,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34764","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/145/operations/56/events","headers":{"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["221"]}},"bytes_read":221,"user_id":"","duration":29.30729098,"size":118,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971439.4662426,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34772","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["2522"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2522,"user_id":"","duration":37.023853562,"size":2974,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776971440.4010131,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["345"],"Accept":["application/json"]}},"bytes_read":345,"user_id":"","duration":1.910063383,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971456.4380915,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49410","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776971462.9637277,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51264","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["345"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":345,"user_id":"","duration":2.264319122,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971482.2553308,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41272","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":19.296480557,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971484.2866504,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59224","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2532"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2532,"user_id":"","duration":65.512254167,"size":2978,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971488.9908838,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47940","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776971494.9698257,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48404","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2533"]}},"bytes_read":2533,"user_id":"","duration":59.998646148,"size":2977,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776971501.0057473,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57050","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":1.250434362,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776971506.0204213,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2854"]}},"bytes_read":2854,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971506.0802183,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51334","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2523"]}},"bytes_read":2523,"user_id":"","duration":55.044151277,"size":2978,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971510.4202445,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41280","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2534"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2534,"user_id":"","duration":42.243294588,"size":2988,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971517.4913113,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41272","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Content-Length":["2520"],"Connection":["keep-alive"],"Accept-Language":["*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"]}},"bytes_read":2520,"user_id":"","duration":34.178840232,"size":2968,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776971526.4027622,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57064","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":25.359180886,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971532.5663872,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50632","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":32.592867544,"size":2978,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776971548.567486,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37678","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":25.506033867,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971552.042582,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35964","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":7.021856891,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971554.7812746,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42912","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"]}},"bytes_read":2521,"user_id":"","duration":38.982360887,"size":2976,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971569.2569516,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"39002","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/install-token","headers":{"Content-Type":["application/json"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip"],"Content-Length":["80"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.8115"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["153105acad2c"],"Expect":["100-continue"]}},"bytes_read":80,"user_id":"","duration":13.74687624,"size":433,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971570.3861241,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33238","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2519"]}},"bytes_read":2519,"user_id":"","duration":38.455883311,"size":2973,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776971571.7040315,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39568","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["345"],"Accept":["application/json"]}},"bytes_read":345,"user_id":"","duration":1.647193863,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776971573.5595868,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45938","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971574.4300385,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"39002","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"User-Agent":["node"],"Accept":["*/*"],"Accept-Language":["*"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":1.554898352,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971580.3091505,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35974","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2523"]}},"bytes_read":2523,"user_id":"","duration":32.1516552,"size":2973,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776971593.4459803,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"35196","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["345"],"Accept":["application/json"]}},"bytes_read":345,"user_id":"","duration":1.483967258,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776971597.3743865,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39580","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2849"],"Accept":["application/json"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971599.4962242,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57174","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2518"],"Content-Type":["application/json"],"Accept-Language":["*"]}},"bytes_read":2518,"user_id":"","duration":34.709982843,"size":2968,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971599.6850095,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"39002","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-agent/claim","headers":{"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Forwarded-Proto":["http"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["node"],"Content-Length":["185"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["153105acad2c"]}},"bytes_read":185,"user_id":"","duration":24.432631804,"size":1648,"status":201,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971599.8093903,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54080","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Length":["76"],"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":6.360905042,"size":172,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776971602.0913718,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.14","remote_port":"51322","client_ip":"172.20.0.14","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/146/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["179"]}},"bytes_read":179,"user_id":"","duration":1.993690848,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776971609.197997,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57174","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":7.100765856,"size":179,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971619.2405925,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33052","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Content-Length":["2519"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2519,"user_id":"","duration":38.525575367,"size":2974,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971620.4703727,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56884","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/backlog","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["62"]}},"bytes_read":62,"user_id":"","duration":11.267820155,"size":145,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971623.298046,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"39002","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/146","headers":{"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.8115"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":19.036783067,"size":1463,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971625.6372893,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56878","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/presence","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["203"]}},"bytes_read":203,"user_id":"","duration":16.43653877,"size":287,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776971631.234077,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40588","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":1.183186902,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971632.5681758,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54088","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2524"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2524,"user_id":"","duration":35.764563061,"size":2973,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971635.5165718,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33052","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept":["*/*"],"Content-Length":["2397"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2397,"user_id":"","duration":14.891851558,"size":2028,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971641.738702,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36968","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2841"]}},"bytes_read":2841,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776971642.7624626,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"39002","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/146","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.8115"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":11.450841158,"size":2028,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971647.621613,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57174","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["*"],"Content-Length":["2521"],"Connection":["keep-alive"],"Accept":["*/*"]}},"bytes_read":2521,"user_id":"","duration":35.743398468,"size":2974,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776971652.9687614,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33052","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"Content-Length":["2500"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2500,"user_id":"","duration":16.014926822,"size":2046,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971660.5565941,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40604","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":29.298850439,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971670.2764277,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56878","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2533"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Connection":["keep-alive"],"Accept":["*/*"]}},"bytes_read":2533,"user_id":"","duration":42.349004314,"size":2979,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776971672.7847743,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59596","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2499"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2499,"user_id":"","duration":20.215463689,"size":2054,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971680.2530196,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"39002","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/146/stream-session","headers":{"Accept-Language":["*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["153105acad2c"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate"],"Authorization":[],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"User-Agent":["node"],"Content-Length":["51"],"Accept":["*/*"]}},"bytes_read":51,"user_id":"","duration":10.104795694,"size":483,"status":201,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Status":["201 Created"]}} -{"level":"info","ts":1776971682.518749,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36670","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2513"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2513,"user_id":"","duration":38.960296996,"size":2970,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971683.2219265,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"32976","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":7.944155473,"size":172,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971684.606297,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"32968","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept-Language":["*"],"Content-Length":["2499"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"]}},"bytes_read":2499,"user_id":"","duration":15.685733104,"size":2049,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971685.4619617,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51436","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":32.205021447,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971685.4942172,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55278","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/browser-streams/validate","headers":{"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["327"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":327,"user_id":"","duration":5.229799378,"size":251,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971693.0244362,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57924","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2523"]}},"bytes_read":2523,"user_id":"","duration":33.524520927,"size":2980,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776971701.2231169,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51562","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":0.937285532,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971703.592612,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"32976","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2484"],"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2484,"user_id":"","duration":18.476667119,"size":2294,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971712.3433895,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44458","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971713.9301817,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59596","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":38.93562193,"size":2974,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776971723.5773377,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51246","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["345"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":345,"user_id":"","duration":2.120993316,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971724.7120936,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39034","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2533"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2533,"user_id":"","duration":33.964441854,"size":2984,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971726.8562376,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"39002","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/146/operations","headers":{"Content-Length":["265"],"Content-Type":["application/json"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"User-Agent":["node"],"Accept-Language":["*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":265,"user_id":"","duration":39.346144426,"size":2440,"status":201,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971730.5310802,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53996","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Content-Length":["2487"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2487,"user_id":"","duration":28.763398792,"size":2432,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971731.6780877,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51578","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971733.100251,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38338","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":9.519539983,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971733.1601334,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38332","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/backlog","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["62"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"]}},"bytes_read":62,"user_id":"","duration":14.262660018,"size":740,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971740.7342494,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"32976","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2520,"user_id":"","duration":35.44925031,"size":2975,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971741.013808,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59596","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2487"]}},"bytes_read":2487,"user_id":"","duration":23.274483208,"size":2495,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971757.9492502,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38336","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"]}},"bytes_read":2520,"user_id":"","duration":37.771135008,"size":2969,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971758.8478196,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53996","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2488"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2488,"user_id":"","duration":24.867976923,"size":2496,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776971759.5072744,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45726","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":0.947833665,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776971766.0468135,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41414","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2842"]}},"bytes_read":2842,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971781.1357167,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57902","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2985"],"Connection":["keep-alive"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"]}},"bytes_read":2985,"user_id":"","duration":35.740611869,"size":2684,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776971782.9126463,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42154","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Content-Type":["application/json"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2522,"user_id":"","duration":46.634273568,"size":2972,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971787.3104963,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50768","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2988"],"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"]}},"bytes_read":2988,"user_id":"","duration":31.78163268,"size":2643,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776971787.944192,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53324","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/operations/57/events","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["181"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":181,"user_id":"","duration":20.650193036,"size":825,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971788.0515592,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57908","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/operations/57/events","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["219"]}},"bytes_read":219,"user_id":"","duration":42.65410509,"size":822,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776971788.3471467,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45728","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":28.770452115,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971790.0044463,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"39002","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/146/operations","headers":{"X-Forwarded-For":["172.20.0.1"],"User-Agent":["node"],"Accept":["*/*"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["153105acad2c"],"Accept-Language":["*"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":18.13427807,"size":825,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971797.6535232,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50762","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["node"],"Content-Length":["2529"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2529,"user_id":"","duration":45.007596703,"size":2976,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971807.7955084,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50784","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/operations/57/events","headers":{"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["196"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":196,"user_id":"","duration":52.264578345,"size":822,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971808.8739371,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42270","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":27.343559955,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971820.5351725,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53310","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["2985"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2985,"user_id":"","duration":53.22472472,"size":2693,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776971824.1604118,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45772","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":20.609397148,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776971830.9073758,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45258","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":2.312450967,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"error","ts":1776971853.8028467,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56830","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":2.658810493,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776971857.4766011,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60184","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2521"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2521,"user_id":"","duration":88.928217566,"size":3036,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971867.3323276,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57902","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Content-Length":["2487"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2487,"user_id":"","duration":83.266888276,"size":2797,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971877.519861,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53326","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/operations/57/complete","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["255"]}},"bytes_read":255,"user_id":"","duration":110.199966036,"size":822,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971879.1269894,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60496","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/backlog","headers":{"Content-Length":["62"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":62,"user_id":"","duration":34.183641097,"size":145,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971883.194686,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36870","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Length":["76"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":29.364697152,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971889.8771503,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34736","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971892.764226,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45758","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["2490"]}},"bytes_read":2490,"user_id":"","duration":91.860706086,"size":2803,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776971893.507277,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43756","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["366"],"Accept":["application/json"]}},"bytes_read":366,"user_id":"","duration":2.676041901,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776971898.2047102,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36786","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2497"],"Connection":["keep-alive"]}},"bytes_read":2497,"user_id":"","duration":80.977869054,"size":2749,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971898.405455,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42154","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2519"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2519,"user_id":"","duration":113.62609949,"size":3032,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971904.0275202,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"39002","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/146/logs","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"Accept-Encoding":["gzip, deflate"],"Authorization":[],"X-Forwarded-Host":["localhost"],"User-Agent":["node"],"Accept-Language":["*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":113.976853516,"size":2972,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776971908.2216015,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45262","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971909.8601375,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57896","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2495"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept":["*/*"],"Accept-Language":["*"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2495,"user_id":"","duration":75.791720319,"size":2743,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971911.7344549,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50762","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Content-Length":["2522"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2522,"user_id":"","duration":110.814567743,"size":3033,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971915.4528673,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36770","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2529"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2529,"user_id":"","duration":98.21046703,"size":3038,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971917.6109147,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36858","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"User-Agent":["node"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2497"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":2497,"user_id":"","duration":66.674821417,"size":2749,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971923.2799807,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57336","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2499"]}},"bytes_read":2499,"user_id":"","duration":56.030623501,"size":2749,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971924.3058593,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57904","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"Accept":["*/*"],"Content-Length":["2527"]}},"bytes_read":2527,"user_id":"","duration":90.235336965,"size":2971,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971925.4234183,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39310","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2841"],"Accept":["application/json"]}},"bytes_read":2841,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971928.0315123,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43760","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":34.505452379,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971931.2313592,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53886","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2501"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":2501,"user_id":"","duration":47.130549199,"size":2756,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971938.0285919,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57322","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2531"],"Content-Type":["application/json"],"Accept-Language":["*"]}},"bytes_read":2531,"user_id":"","duration":70.757992306,"size":2978,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776971943.4506876,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36852","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2529"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2529,"user_id":"","duration":92.494396404,"size":2978,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971943.5900338,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42154","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2500"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2500,"user_id":"","duration":42.609952397,"size":2748,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971945.8258126,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39244","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":30.275378546,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971948.254448,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52446","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["node"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":10.722214925,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971948.9311254,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53900","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2533"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"]}},"bytes_read":2533,"user_id":"","duration":64.828701459,"size":2978,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971955.6244702,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38528","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2532"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2532,"user_id":"","duration":54.642318392,"size":2978,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971959.0883405,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43738","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2495"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2495,"user_id":"","duration":42.148121659,"size":2745,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776971964.262979,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49730","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.728820949,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776971970.3388872,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43730","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"User-Agent":["node"],"Content-Length":["2527"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2527,"user_id":"","duration":53.370480845,"size":2972,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971974.168199,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52436","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2485"]}},"bytes_read":2485,"user_id":"","duration":41.109952842,"size":2739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971975.3383865,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40646","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2849"],"Accept":["application/json"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971982.321788,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53082","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2486"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2486,"user_id":"","duration":32.44660762,"size":2744,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776971983.3706007,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53886","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2517"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"]}},"bytes_read":2517,"user_id":"","duration":50.31376266,"size":2967,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776971986.1742492,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60668","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.665593995,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776971989.7432115,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52446","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2518"],"Content-Type":["application/json"]}},"bytes_read":2518,"user_id":"","duration":39.870191343,"size":2983,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971989.9057968,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49746","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2849"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776971991.7092133,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56242","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2501"]}},"bytes_read":2501,"user_id":"","duration":25.49530766,"size":2750,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776971993.037845,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53886","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Length":["76"],"Content-Type":["application/json"]}},"bytes_read":76,"user_id":"","duration":6.844654602,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972001.042555,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56254","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2533"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"]}},"bytes_read":2533,"user_id":"","duration":34.828258757,"size":2981,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972005.943757,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53082","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2488"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2488,"user_id":"","duration":23.120703116,"size":2744,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972014.3270733,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51594","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2520,"user_id":"","duration":31.501974074,"size":2974,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972020.787799,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43594","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2488"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":2488,"user_id":"","duration":22.100418295,"size":2747,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776972023.0482986,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50312","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":1.78914147,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972023.3161824,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"55778","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2842"]}},"bytes_read":2842,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972030.2483535,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43604","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Content-Length":["2520"],"Content-Type":["application/json"],"Accept-Language":["*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":2520,"user_id":"","duration":31.558937366,"size":2974,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972037.8592916,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58240","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2489"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2489,"user_id":"","duration":23.014584995,"size":2746,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972045.6687942,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51594","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"]}},"bytes_read":2521,"user_id":"","duration":30.825443523,"size":2977,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972048.8337424,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50314","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":25.784289546,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776972055.1421256,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43604","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2482"],"Connection":["keep-alive"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2482,"user_id":"","duration":24.362423904,"size":2741,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972064.5614161,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42754","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2514"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"]}},"bytes_read":2514,"user_id":"","duration":33.795523824,"size":2971,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972070.7376509,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45666","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Length":["2495"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2495,"user_id":"","duration":23.644840934,"size":2749,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972071.3854823,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"47614","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/146/stream-session","headers":{"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["*"],"Content-Length":["51"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Authorization":[],"Accept":["*/*"]}},"bytes_read":51,"user_id":"","duration":24.590931383,"size":483,"status":201,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972073.3618524,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33160","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":28.300972707,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} -{"level":"info","ts":1776972074.2635136,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42754","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":7.205953525,"size":172,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972076.2125874,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45666","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/browser-streams/validate","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["327"],"Connection":["keep-alive"]}},"bytes_read":327,"user_id":"","duration":4.808908624,"size":251,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972078.7732067,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51594","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2527"]}},"bytes_read":2527,"user_id":"","duration":31.683811821,"size":2983,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972087.8927383,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37466","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2486"]}},"bytes_read":2486,"user_id":"","duration":24.157470076,"size":2746,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776972092.8431902,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44580","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776972093.3159673,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37630","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.22987098,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972095.3738334,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37450","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Length":["2518"]}},"bytes_read":2518,"user_id":"","duration":31.640330853,"size":2976,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972101.8634531,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51594","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"Content-Length":["2490"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2490,"user_id":"","duration":22.324100683,"size":2745,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776972118.0024962,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38144","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":38.438750866,"size":2980,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"error","ts":1776972118.6087267,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["345"],"Accept":["application/json"]}},"bytes_read":345,"user_id":"","duration":5.041440251,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776972124.591514,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38144","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":5.980641142,"size":172,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776972126.2311685,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37640","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972132.6650665,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37450","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2516"],"Connection":["keep-alive"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2516,"user_id":"","duration":37.005999507,"size":2967,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972135.973373,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35372","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["2484"]}},"bytes_read":2484,"user_id":"","duration":40.312552078,"size":2906,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776972142.5116959,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"47614","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/146/operations","headers":{"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["153105acad2c"],"Content-Length":["271"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["*"],"Authorization":[],"Content-Type":["application/json"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"User-Agent":["node"],"X-Forwarded-Proto":["http"]}},"bytes_read":271,"user_id":"","duration":64.209660995,"size":2928,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972146.5609503,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35440","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2495"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2495,"user_id":"","duration":34.508914878,"size":2923,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972146.7410402,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37450","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/backlog","headers":{"Content-Length":["62"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":62,"user_id":"","duration":11.993950184,"size":746,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972148.42718,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35446","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2527"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2527,"user_id":"","duration":36.373462802,"size":2976,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972154.6469436,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39724","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2843"]}},"bytes_read":2843,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776972155.7906158,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46684","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["366"],"Accept":["application/json"]}},"bytes_read":366,"user_id":"","duration":2.175339691,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972157.5748599,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55516","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2497"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2497,"user_id":"","duration":28.684714634,"size":2948,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776972158.1326818,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55532","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["2529"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2529,"user_id":"","duration":29.212103106,"size":2981,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972171.25804,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38456","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/operations/58/events","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["219"]}},"bytes_read":219,"user_id":"","duration":12.922936289,"size":729,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972173.4362335,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52932","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2490"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2490,"user_id":"","duration":28.671715081,"size":2976,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972175.1806054,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52936","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2522"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":2522,"user_id":"","duration":30.356552345,"size":2974,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776972181.3227549,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57332","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/operations/58/events","headers":{"Content-Length":["196"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":196,"user_id":"","duration":11.364701126,"size":785,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776972181.5483499,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46694","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":25.729744276,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972187.7278066,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55516","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["3001"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":3001,"user_id":"","duration":29.396899974,"size":3053,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972188.8832252,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60280","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2532"]}},"bytes_read":2532,"user_id":"","duration":29.015526916,"size":2977,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972198.0085413,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47660","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/operations/58/events","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["181"],"Connection":["keep-alive"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":181,"user_id":"","duration":17.279313749,"size":862,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972200.232333,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57328","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2994"]}},"bytes_read":2994,"user_id":"","duration":30.27595759,"size":3002,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972203.2486136,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45998","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":25.419663381,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972204.4040067,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34754","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/backlog","headers":{"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["62"]}},"bytes_read":62,"user_id":"","duration":6.44773666,"size":145,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972205.1733193,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47660","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":5.377336585,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972206.4567387,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57344","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2522,"user_id":"","duration":31.151484941,"size":2974,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972206.7587705,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47676","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/operations/58/complete","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["261"]}},"bytes_read":261,"user_id":"","duration":26.003761172,"size":862,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972210.769469,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47650","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Length":["2991"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2991,"user_id":"","duration":30.016212043,"size":3051,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972214.276926,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57344","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/backlog","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["62"]}},"bytes_read":62,"user_id":"","duration":7.514955634,"size":145,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972223.9522936,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34732","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2527"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2527,"user_id":"","duration":32.031833974,"size":2983,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776972225.8598833,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44004","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.074750827,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776972226.8477492,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42740","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972227.1315696,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34738","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2490"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"Accept-Language":["*"]}},"bytes_read":2490,"user_id":"","duration":31.95844427,"size":3045,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776972240.9946592,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54954","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2523"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2523,"user_id":"","duration":33.194353272,"size":2979,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972244.6050143,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33026","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"User-Agent":["node"],"Content-Length":["2490"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2490,"user_id":"","duration":34.305760667,"size":3044,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776972247.4340703,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40470","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.292515158,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972251.4744313,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44010","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2849"],"Accept":["application/json"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972253.1499252,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53896","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.713585226,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972258.4844158,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40782","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept-Language":["*"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":34.796495235,"size":2977,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776972259.240975,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34732","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2491"]}},"bytes_read":2491,"user_id":"","duration":33.372992517,"size":3047,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776972270.9533396,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53876","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2532"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":2532,"user_id":"","duration":31.094697796,"size":2988,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972272.863428,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53888","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2502"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2502,"user_id":"","duration":31.673337874,"size":3058,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776972283.1527905,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47236","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2841"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2841,"user_id":"","duration":19.176495441,"size":9682,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972287.6923733,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53896","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2518"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2518,"user_id":"","duration":31.97387476,"size":2972,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972289.5043907,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51254","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept":["*/*"],"User-Agent":["node"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2491"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2491,"user_id":"","duration":32.558015,"size":3050,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972302.7507794,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50190","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["2490"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2490,"user_id":"","duration":30.144359778,"size":3046,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972302.8007174,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50182","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2522"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2522,"user_id":"","duration":30.947646716,"size":2971,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776972310.17007,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39890","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.988068644,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972318.2994354,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49242","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["2519"]}},"bytes_read":2519,"user_id":"","duration":30.580429687,"size":2978,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776972319.9075916,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49246","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2487"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2487,"user_id":"","duration":31.039590134,"size":3047,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972332.015258,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51332","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":26.813284644,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972332.410558,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52172","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":5.256472617,"size":172,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776972335.2188194,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50182","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2524"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2524,"user_id":"","duration":31.641775735,"size":2981,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972335.5581384,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50190","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2492"]}},"bytes_read":2492,"user_id":"","duration":31.163184933,"size":3053,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972350.9603813,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49242","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"Accept":["*/*"],"Content-Length":["2524"]}},"bytes_read":2524,"user_id":"","duration":31.294545056,"size":2980,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"error","ts":1776972353.1424606,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51120","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":0.946628618,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972353.278281,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49246","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"User-Agent":["node"],"Accept-Language":["*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2492"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":2492,"user_id":"","duration":32.509031637,"size":3047,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972355.4637985,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59418","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972369.905143,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50182","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2521"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept-Language":["*"]}},"bytes_read":2521,"user_id":"","duration":34.141207383,"size":2969,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972371.006673,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50190","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2491"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2491,"user_id":"","duration":34.22701908,"size":3053,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776972375.1974769,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57276","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.808537636,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972377.979456,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51136","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776972381.8230274,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34140","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":6.598323256,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972387.8668509,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49242","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"]}},"bytes_read":2520,"user_id":"","duration":36.187090546,"size":2975,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972388.8834968,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36304","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2488"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"]}},"bytes_read":2488,"user_id":"","duration":36.240183218,"size":3051,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972402.3291495,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37658","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2521"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2521,"user_id":"","duration":34.265451436,"size":2976,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776972402.3802543,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37674","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2489"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2489,"user_id":"","duration":33.548558293,"size":3046,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776972412.9203696,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39182","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":0.887803159,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972412.9366252,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57360","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2848"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972415.436043,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49726","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":2522,"user_id":"","duration":30.702095654,"size":2974,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972415.4799237,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34140","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2490"]}},"bytes_read":2490,"user_id":"","duration":30.747903885,"size":3048,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972431.002637,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33316","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2490"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2490,"user_id":"","duration":30.457890656,"size":3045,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776972432.3198802,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33306","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept-Language":["*"],"Content-Length":["2522"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2522,"user_id":"","duration":31.7763832,"size":2974,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776972438.7985277,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39192","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Length":["163"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":163,"user_id":"","duration":25.876851297,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972445.8153286,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34140","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2515"]}},"bytes_read":2515,"user_id":"","duration":29.167945926,"size":2972,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776972446.8278964,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49726","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2483"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2483,"user_id":"","duration":30.179382906,"size":3046,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972460.9217513,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"48732","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":25.987251294,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972462.8890388,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46294","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2532"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2532,"user_id":"","duration":29.738648369,"size":2979,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972464.0585306,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52058","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":7.123595993,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972464.4801733,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33306","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2500"]}},"bytes_read":2500,"user_id":"","duration":31.345385228,"size":3055,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776972481.377487,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49726","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Length":["2528"]}},"bytes_read":2528,"user_id":"","duration":31.60086048,"size":2984,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776972482.6041956,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34140","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Length":["2496"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"]}},"bytes_read":2496,"user_id":"","duration":32.84275613,"size":3053,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776972482.9864998,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59788","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.030240132,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972484.3775187,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"53366","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972497.0329974,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33306","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2527"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2527,"user_id":"","duration":31.422512629,"size":2979,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776972497.1000898,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46294","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2495"],"Content-Type":["application/json"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2495,"user_id":"","duration":31.488058135,"size":3051,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776972505.3196385,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45422","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":2.076005718,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972505.324915,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59794","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2849"],"Accept":["application/json"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972511.5452864,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48966","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.223024205,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972512.3288727,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39104","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2531"],"Content-Type":["application/json"],"Accept-Language":["*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":2531,"user_id":"","duration":30.591785752,"size":2978,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972513.7862089,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49726","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept":["*/*"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2499"],"Connection":["keep-alive"]}},"bytes_read":2499,"user_id":"","duration":32.050882582,"size":3054,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776972528.826065,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39034","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["2533"]}},"bytes_read":2533,"user_id":"","duration":31.188634816,"size":2984,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972529.8913162,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33306","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["2501"]}},"bytes_read":2501,"user_id":"","duration":32.255137291,"size":3056,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776972542.8782847,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58928","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":1.003724941,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972544.7459874,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37526","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2838"]}},"bytes_read":2838,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972548.4276977,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48966","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2487"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2487,"user_id":"","duration":34.556394879,"size":3042,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972549.0465188,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49726","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2519"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2519,"user_id":"","duration":35.177047124,"size":2969,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972564.0535336,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57844","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2521"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2521,"user_id":"","duration":34.2508268,"size":2982,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972565.224776,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39034","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2489"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2489,"user_id":"","duration":35.424273751,"size":3049,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972569.8605652,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58934","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.951699486,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776972578.1799335,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51612","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2522,"user_id":"","duration":32.526283846,"size":2979,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972578.3027077,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51600","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2490"]}},"bytes_read":2490,"user_id":"","duration":32.651375877,"size":3053,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972591.749201,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40430","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.845680851,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972593.2427192,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46734","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":6.355698088,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972593.369945,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36004","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2488"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2488,"user_id":"","duration":31.599928537,"size":3047,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972593.6109931,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36012","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"]}},"bytes_read":2520,"user_id":"","duration":31.839137908,"size":2974,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972607.5907767,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55016","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Content-Length":["2517"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":2517,"user_id":"","duration":29.942874364,"size":2973,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972609.3551815,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55000","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2485"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2485,"user_id":"","duration":31.709306477,"size":3043,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776972613.1114504,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43596","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.219872846,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776972613.2062116,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49940","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2849"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972624.3399436,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36004","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":30.531996984,"size":2977,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972625.7663982,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46734","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2490"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2490,"user_id":"","duration":31.956814547,"size":3047,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972630.8786657,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["*"],"X-Forwarded-Server":["153105acad2c"],"Accept":["*/*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":1.788161688,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776972635.119919,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49974","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.731545049,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972635.9051266,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43598","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2849"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972641.6810563,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57002","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.558627377,"size":172,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972642.7438412,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55000","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept-Language":["*"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2491"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2491,"user_id":"","duration":33.085492688,"size":3055,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972646.214713,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34424","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2523"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2523,"user_id":"","duration":36.555161649,"size":2989,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776972646.8113213,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/install-token","headers":{"Content-Type":["application/json"],"X-Forwarded-Host":["localhost"],"Content-Length":["58"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["node"],"Accept-Language":["*"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Authorization":[]}},"bytes_read":58,"user_id":"","duration":10.962275127,"size":433,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972647.8451307,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["node"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Accept-Language":["*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":0.960645045,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776972657.526116,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46734","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["2491"]}},"bytes_read":2491,"user_id":"","duration":31.551737121,"size":3052,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776972658.052916,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36004","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2523"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2523,"user_id":"","duration":32.081015392,"size":2975,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972671.8467329,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-agent/claim","headers":{"Accept-Language":["*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"Content-Type":["application/json"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["node"],"Content-Length":["187"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":187,"user_id":"","duration":23.10450671,"size":1644,"status":201,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776972673.2455437,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46306","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":1.630059191,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776972674.0739381,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.15","remote_port":"55128","client_ip":"172.20.0.15","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/153/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["181"]}},"bytes_read":181,"user_id":"","duration":1.639848367,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972674.8540783,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57002","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Accept-Language":["*"],"Content-Length":["2502"]}},"bytes_read":2502,"user_id":"","duration":32.941517095,"size":3059,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972675.3032925,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53172","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2534"],"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"]}},"bytes_read":2534,"user_id":"","duration":33.388453202,"size":2985,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776972675.8081803,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39436","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2839"]}},"bytes_read":2839,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972681.760438,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51588","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/153/validate","headers":{"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":7.638794186,"size":175,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972690.2033215,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48208","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/153/backlog","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["64"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Connection":["keep-alive"],"User-Agent":["node"]}},"bytes_read":64,"user_id":"","duration":8.438145459,"size":141,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972693.458068,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53878","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":36.339281618,"size":2975,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972693.5475564,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53866","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2490"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"]}},"bytes_read":2490,"user_id":"","duration":36.430156235,"size":3051,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972696.1204498,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48196","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/153/presence","headers":{"Content-Length":["205"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":205,"user_id":"","duration":14.357188262,"size":289,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972699.7406366,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46314","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.452070864,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972700.5943534,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/153","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["node"],"Accept":["*/*"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"]}},"bytes_read":0,"user_id":"","duration":7.593437715,"size":1579,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972707.4873981,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51580","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["2499"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2499,"user_id":"","duration":33.437469761,"size":3056,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776972708.1905792,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34344","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/153/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2394"]}},"bytes_read":2394,"user_id":"","duration":15.543096249,"size":2022,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972709.2108185,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/153","headers":{"X-Forwarded-Server":["153105acad2c"],"X-Forwarded-Prefix":["/api"],"User-Agent":["node"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept":["*/*"],"Accept-Language":["*"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate"],"Authorization":[],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":8.103512256,"size":2022,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972710.3463514,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51564","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["2531"]}},"bytes_read":2531,"user_id":"","duration":36.296496745,"size":2982,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972717.528291,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/153","headers":{"X-Forwarded-Server":["153105acad2c"],"Accept-Language":["*"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":8.290604497,"size":2022,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972721.756186,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"54392","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.440485951,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972723.1760511,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34342","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Length":["2497"],"Content-Type":["application/json"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":2497,"user_id":"","duration":32.235125447,"size":3052,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776972723.2734673,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51580","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/153/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2496"],"Connection":["keep-alive"]}},"bytes_read":2496,"user_id":"","duration":15.386989598,"size":2036,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972723.6937087,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34100","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.396546763,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972726.6389368,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48208","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2529"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2529,"user_id":"","duration":35.699584807,"size":2979,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972727.1540515,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/153/stream-session","headers":{"Content-Length":["51"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"User-Agent":["node"],"Accept":["*/*"],"Authorization":[],"Content-Type":["application/json"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":51,"user_id":"","duration":9.62126976,"size":482,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972732.0688994,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51580","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/browser-streams/validate","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["327"],"Connection":["keep-alive"]}},"bytes_read":327,"user_id":"","duration":4.909915768,"size":251,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972739.7883132,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58298","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2484"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2484,"user_id":"","duration":32.986671094,"size":3042,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776972740.2276056,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34100","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/153/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Content-Length":["2503"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2503,"user_id":"","duration":16.125440737,"size":2055,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972742.1929643,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58294","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2516"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2516,"user_id":"","duration":35.369942838,"size":2968,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776972743.5764413,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57658","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.282686927,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972746.1669092,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"38610","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972755.912394,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52676","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2519"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2519,"user_id":"","duration":32.991519488,"size":2974,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972756.2579873,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52670","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2487"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2487,"user_id":"","duration":33.339359259,"size":3050,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972764.8214827,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58298","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/153/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["2506"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2506,"user_id":"","duration":24.887361167,"size":2428,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776972765.1303854,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47738","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.308183302,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972766.7973347,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57672","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972770.874993,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35252","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.741886026,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972771.806321,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49634","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2500"]}},"bytes_read":2500,"user_id":"","duration":33.037603427,"size":3057,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972772.1072414,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49650","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2532"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2532,"user_id":"","duration":33.337136812,"size":2982,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776972772.471622,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/153/operations","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["node"],"Authorization":[],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"Content-Length":["256"],"Accept-Language":["*"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":256,"user_id":"","duration":39.832826039,"size":2439,"status":201,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["201 Created"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972775.2749996,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60920","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/153/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2493"],"Accept":["*/*"]}},"bytes_read":2493,"user_id":"","duration":19.631055312,"size":2428,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972776.5337615,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58298","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/153/backlog","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["64"]}},"bytes_read":64,"user_id":"","duration":11.549076252,"size":727,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972785.3446357,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60896","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2497"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2497,"user_id":"","duration":30.485010169,"size":3053,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776972785.4583435,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60904","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2529"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2529,"user_id":"","duration":30.583043711,"size":2977,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972792.6616573,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49634","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/153/telemetry","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["2507"]}},"bytes_read":2507,"user_id":"","duration":20.631220172,"size":2503,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972800.096787,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60904","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/153/operations/61/events","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["221"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Type":["application/json"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":221,"user_id":"","duration":13.472660223,"size":714,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972800.9413376,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39800","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2533"]}},"bytes_read":2533,"user_id":"","duration":29.964430312,"size":2980,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972801.8337305,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35252","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Length":["2501"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2501,"user_id":"","duration":30.857930334,"size":3055,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776972802.685428,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56722","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":0.872894372,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972802.8027716,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58650","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2851"]}},"bytes_read":2851,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972809.017622,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60896","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/153/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2982"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2982,"user_id":"","duration":22.371474796,"size":2587,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972811.4711816,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35304","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/153/operations/61/events","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["198"]}},"bytes_read":198,"user_id":"","duration":13.275756652,"size":772,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776972815.3590043,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42800","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"]}},"bytes_read":2522,"user_id":"","duration":30.310311782,"size":2972,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776972816.9871178,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42788","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["2490"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2490,"user_id":"","duration":31.940158448,"size":3043,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972820.954717,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35292","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/153/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2994"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2994,"user_id":"","duration":22.761458513,"size":2633,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972824.3513787,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38368","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/153/operations/61/events","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["183"]}},"bytes_read":183,"user_id":"","duration":14.610550501,"size":852,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972827.0929067,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/153/operations","headers":{"X-Forwarded-Proto":["http"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":26.70398806,"size":851,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972829.253855,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56732","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":26.566849463,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972830.3168185,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45640","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2519"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"]}},"bytes_read":2519,"user_id":"","duration":30.195829195,"size":2968,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776972830.3171139,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35292","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/153/backlog","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Content-Length":["64"]}},"bytes_read":64,"user_id":"","duration":7.049107481,"size":141,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972831.0487998,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60896","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/153/telemetry","headers":{"Content-Length":["2983"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2983,"user_id":"","duration":21.29244945,"size":2715,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972831.622725,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38372","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/153/operations/61/complete","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["246"],"Accept":["*/*"],"Accept-Language":["*"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":246,"user_id":"","duration":21.864557737,"size":852,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972832.3269746,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45636","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2487"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2487,"user_id":"","duration":32.19075224,"size":3040,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972839.2190669,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60896","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/153/backlog","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["64"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":64,"user_id":"","duration":7.594717641,"size":141,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972848.5225852,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42800","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2521"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2521,"user_id":"","duration":31.783450795,"size":2976,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972849.654875,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38376","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2489"]}},"bytes_read":2489,"user_id":"","duration":32.913415689,"size":3044,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972850.9277635,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34098","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":26.222497487,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776972852.2245693,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51624","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Connection":["keep-alive"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":5.51902631,"size":172,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972852.5136912,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38368","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/153/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Length":["2496"]}},"bytes_read":2496,"user_id":"","duration":26.919101171,"size":2779,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972858.4813626,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/153/logs","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Prefix":["/api"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Accept-Language":["*"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":31.367086934,"size":3026,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972863.6864376,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35292","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2510"],"Content-Type":["application/json"]}},"bytes_read":2510,"user_id":"","duration":31.108219056,"size":2966,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972864.8837466,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37784","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2478"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":2478,"user_id":"","duration":32.304217918,"size":3040,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776972865.4600303,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60896","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/153/telemetry","headers":{"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2498"]}},"bytes_read":2498,"user_id":"","duration":23.609247349,"size":2778,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972870.0736582,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"DELETE","host":"localhost","uri":"/edge-gateways/153","headers":{"User-Agent":["node"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Authorization":[],"X-Forwarded-Prefix":["/api"],"Accept":["*/*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["153105acad2c"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":10.695218752,"size":102,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776972870.5266004,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53992","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/153/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2489"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2489,"user_id":"","duration":12.786030966,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776972870.7191715,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53994","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/153/presence","headers":{"Content-Length":["186"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept-Language":["*"]}},"bytes_read":186,"user_id":"","duration":11.567102716,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776972871.2949252,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57054","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2849"],"Accept":["application/json"]}},"bytes_read":2849,"user_id":"","duration":19.563147787,"size":9698,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776972878.4630454,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51630","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2523"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2523,"user_id":"","duration":29.79702791,"size":2979,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972880.8308802,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42800","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2491"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2491,"user_id":"","duration":32.167033187,"size":3050,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776972892.4941967,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37112","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["345"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":345,"user_id":"","duration":1.204573451,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972892.9630494,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52794","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2848"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972895.4001105,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35292","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Content-Length":["2517"]}},"bytes_read":2517,"user_id":"","duration":30.610257081,"size":2973,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972897.9381413,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48032","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Content-Length":["2485"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Connection":["keep-alive"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2485,"user_id":"","duration":33.146124002,"size":3045,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776972912.4517293,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36668","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2522,"user_id":"","duration":31.83988659,"size":2977,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972913.0301833,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36672","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2490"]}},"bytes_read":2490,"user_id":"","duration":32.387583214,"size":3047,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776972914.3708198,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36360","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["345"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":345,"user_id":"","duration":1.617014501,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972915.578229,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37122","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2848"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972922.1809812,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36672","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["76"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":7.788396847,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972929.3387978,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36830","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2520"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2520,"user_id":"","duration":32.567296414,"size":2973,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972929.5919168,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35292","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2488"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2488,"user_id":"","duration":32.822300336,"size":3044,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972930.109522,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/146/logs","headers":{"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["153105acad2c"],"Accept-Encoding":["gzip"],"User-Agent":["Mozilla/5.0 (Windows NT; Windows NT 10.0; en-US) WindowsPowerShell/5.1.26100.8115"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":45.87424053,"size":3437,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776972945.4342184,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53118","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2488"],"Content-Type":["application/json"]}},"bytes_read":2488,"user_id":"","duration":32.753749043,"size":3046,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972945.6174872,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36668","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2520,"user_id":"","duration":32.938794661,"size":2971,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776972951.3438327,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50436","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["366"],"Accept":["application/json"]}},"bytes_read":366,"user_id":"","duration":1.261227649,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776972951.7740242,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"32788","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2837"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2837,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972960.7943523,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52540","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2517"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2517,"user_id":"","duration":31.969063681,"size":2973,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776972960.8738415,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52528","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2485"],"Accept":["*/*"]}},"bytes_read":2485,"user_id":"","duration":32.049207946,"size":3044,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972967.224582,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":1.975100685,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972975.2134492,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42208","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":30.582034781,"size":2977,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972976.3008282,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42216","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["2490"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2490,"user_id":"","duration":31.667395025,"size":3048,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972978.1986582,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50440","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.853457235,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776972984.2104514,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/install-token","headers":{"Content-Length":["58"],"Accept-Encoding":["gzip, deflate"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Authorization":[],"Content-Type":["application/json"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["153105acad2c"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["node"],"Accept-Language":["*"]}},"bytes_read":58,"user_id":"","duration":12.295537296,"size":433,"status":201,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} -{"level":"info","ts":1776972985.476474,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"User-Agent":["node"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":1.168929398,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776972992.6937041,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47356","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Content-Length":["2520"]}},"bytes_read":2520,"user_id":"","duration":31.941502783,"size":2974,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776972994.3666,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47344","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2488"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Accept":["*/*"]}},"bytes_read":2488,"user_id":"","duration":33.615782724,"size":3046,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776972999.969604,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49564","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":26.600403213,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973001.4040725,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47344","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Type":["application/json"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":6.038655163,"size":172,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776973007.1482584,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-agent/claim","headers":{"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"Accept":["*/*"],"X-Forwarded-Port":["80"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Content-Length":["187"],"Content-Type":["application/json"],"Accept-Language":["*"],"X-Forwarded-Server":["153105acad2c"]}},"bytes_read":187,"user_id":"","duration":20.632058199,"size":1642,"status":201,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Status":["201 Created"]}} -{"level":"info","ts":1776973009.33197,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54328","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2521,"user_id":"","duration":32.75849753,"size":2973,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973009.4502413,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42216","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2489"]}},"bytes_read":2489,"user_id":"","duration":32.847454528,"size":3047,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776973009.858721,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.15","remote_port":"43652","client_ip":"172.20.0.15","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/154/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["181"]}},"bytes_read":181,"user_id":"","duration":2.083100436,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776973015.7088985,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54328","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/154/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":5.82126519,"size":175,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973021.5048246,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"48356","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2848"],"Accept":["application/json"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776973021.8756626,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"38482","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["345"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":345,"user_id":"","duration":1.491276807,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776973022.5127223,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56638","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/154/backlog","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["64"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":64,"user_id":"","duration":6.801142935,"size":141,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973024.4466941,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58322","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"User-Agent":["node"],"Content-Length":["2516"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2516,"user_id":"","duration":31.724112806,"size":2968,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973024.9315445,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47356","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["2484"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2484,"user_id":"","duration":32.070542822,"size":3044,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973028.2156823,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56644","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/154/presence","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["205"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":205,"user_id":"","duration":12.501808473,"size":289,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973034.6661394,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/154","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"X-Forwarded-Port":["80"],"User-Agent":["node"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["153105acad2c"],"Accept":["*/*"]}},"bytes_read":0,"user_id":"","duration":7.954763776,"size":1581,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973040.233855,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51782","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":2522,"user_id":"","duration":31.682639337,"size":2976,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973041.492824,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51792","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2490"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2490,"user_id":"","duration":32.660265631,"size":3048,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973041.6220145,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47356","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/154/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2393"],"Content-Type":["application/json"],"Connection":["keep-alive"],"User-Agent":["node"]}},"bytes_read":2393,"user_id":"","duration":15.142061627,"size":2024,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973045.875837,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/154","headers":{"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"Accept":["*/*"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":10.676729965,"size":2024,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776973046.3650904,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":4.247384863,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776973047.7512138,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"38492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2848"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973051.6876762,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56522","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":5.319386007,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973053.8607733,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/154","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip, deflate"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["node"],"Accept":["*/*"]}},"bytes_read":0,"user_id":"","duration":7.981823464,"size":2024,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973058.5754402,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58322","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2511"]}},"bytes_read":2511,"user_id":"","duration":33.594845842,"size":2967,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776973058.648352,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47356","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/154/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2497"]}},"bytes_read":2497,"user_id":"","duration":16.930832479,"size":2035,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776973060.0222917,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52434","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Length":["2479"],"Connection":["keep-alive"]}},"bytes_read":2479,"user_id":"","duration":35.039934105,"size":3041,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973062.2335486,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/154/stream-session","headers":{"User-Agent":["node"],"Accept":["*/*"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["*"],"Content-Type":["application/json"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Content-Length":["51"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"]}},"bytes_read":51,"user_id":"","duration":8.369718169,"size":485,"status":201,"resp_headers":{"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776973068.9418259,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52434","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/browser-streams/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["327"],"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":327,"user_id":"","duration":6.703727116,"size":251,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973073.590623,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43376","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/154/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2496"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2496,"user_id":"","duration":16.065400087,"size":2047,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973075.0638149,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51782","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2523"]}},"bytes_read":2523,"user_id":"","duration":34.500196441,"size":2974,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776973077.0333412,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56514","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2491"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Connection":["keep-alive"],"User-Agent":["node"]}},"bytes_read":2491,"user_id":"","duration":36.467783001,"size":3046,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776973082.3981135,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37284","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":1.012828005,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973083.5311403,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56808","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2841"]}},"bytes_read":2841,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973091.481054,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43368","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2490"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"]}},"bytes_read":2490,"user_id":"","duration":34.796922425,"size":3050,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973091.6648653,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43364","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"]}},"bytes_read":2522,"user_id":"","duration":34.983086006,"size":2975,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973102.5055556,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57188","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/154/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2497"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2497,"user_id":"","duration":28.705786183,"size":2429,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973110.3810105,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37298","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":27.960245015,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973110.6612175,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57180","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2523"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2523,"user_id":"","duration":37.617354417,"size":2970,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973110.7144356,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57178","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2491"]}},"bytes_read":2491,"user_id":"","duration":37.673170964,"size":3046,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776973111.8184268,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/154/operations","headers":{"Accept":["*/*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Content-Length":["256"],"Accept-Language":["*"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"]}},"bytes_read":256,"user_id":"","duration":42.314131399,"size":2440,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973119.609029,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49826","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/154/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Content-Length":["2494"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2494,"user_id":"","duration":29.745972762,"size":2428,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776973122.659043,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57188","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/154/backlog","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["64"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":64,"user_id":"","duration":20.016146764,"size":736,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973132.661941,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49844","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2520"],"Connection":["keep-alive"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2520,"user_id":"","duration":42.781115211,"size":2978,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973133.1769652,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49828","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2488"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":2488,"user_id":"","duration":43.296159679,"size":3044,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973133.245055,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57188","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["*"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":6.841019205,"size":172,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973138.2611616,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41410","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":33.848911702,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973138.8928013,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58432","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/154/telemetry","headers":{"User-Agent":["node"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2503"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2503,"user_id":"","duration":32.895583915,"size":2494,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973150.772064,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57188","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/154/operations/62/events","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["221"],"Content-Type":["application/json"],"Connection":["keep-alive"],"Accept":["*/*"]}},"bytes_read":221,"user_id":"","duration":16.364540944,"size":722,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973151.5085104,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44200","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/154/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2505"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2505,"user_id":"","duration":29.437034507,"size":2496,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973152.3965602,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58412","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2497"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2497,"user_id":"","duration":46.401020548,"size":3053,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776973152.7878163,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50248","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.377156334,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973152.9881766,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58424","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2529"],"Connection":["keep-alive"]}},"bytes_read":2529,"user_id":"","duration":46.991001039,"size":2982,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973158.531134,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50714","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2848"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973163.739315,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44212","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Connection":["keep-alive"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2531"]}},"bytes_read":2531,"user_id":"","duration":41.641917456,"size":2975,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973164.9825664,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49828","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/154/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2985"]}},"bytes_read":2985,"user_id":"","duration":30.551321382,"size":2589,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973165.4165921,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49826","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2499"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2499,"user_id":"","duration":43.321044312,"size":3056,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973166.043758,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46828","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/154/operations/62/events","headers":{"Connection":["keep-alive"],"Content-Length":["198"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":198,"user_id":"","duration":19.761432166,"size":781,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776973174.824565,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52656","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["345"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":345,"user_id":"","duration":1.757800433,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973175.354257,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46816","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/154/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2988"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"]}},"bytes_read":2988,"user_id":"","duration":29.073810524,"size":2642,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973176.5569937,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45070","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Length":["2518"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2518,"user_id":"","duration":39.372776668,"size":2967,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973177.1172843,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58424","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/154/operations/62/events","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"User-Agent":["node"],"Content-Length":["183"]}},"bytes_read":183,"user_id":"","duration":20.82325655,"size":863,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973178.0638957,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45086","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2486"],"Connection":["keep-alive"]}},"bytes_read":2486,"user_id":"","duration":40.877778444,"size":3046,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973180.9301805,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50262","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2848"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973181.0400655,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49144","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":6.213258456,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973182.94862,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46816","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/154/backlog","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["64"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":64,"user_id":"","duration":6.903812972,"size":141,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973183.8070967,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/154/operations","headers":{"User-Agent":["node"],"Accept":["*/*"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":32.918353124,"size":858,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973184.843366,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58412","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/154/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2984"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2984,"user_id":"","duration":28.551335371,"size":2732,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973186.7472968,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55714","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/154/operations/62/complete","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["246"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"]}},"bytes_read":246,"user_id":"","duration":30.451772747,"size":863,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973192.6628754,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44200","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2523"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":2523,"user_id":"","duration":38.584141446,"size":2974,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973193.45549,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58412","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/154/backlog","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["64"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"]}},"bytes_read":64,"user_id":"","duration":6.685930065,"size":141,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973193.5789347,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57188","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["2491"]}},"bytes_read":2491,"user_id":"","duration":39.498939609,"size":3052,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973203.4462574,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49128","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/154/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2506"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":2506,"user_id":"","duration":31.189990815,"size":2789,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973205.7863915,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49110","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["2532"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2532,"user_id":"","duration":34.852579245,"size":2982,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973206.91182,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49114","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2500"]}},"bytes_read":2500,"user_id":"","duration":35.962929884,"size":3051,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776973211.8688645,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49074","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":2.079223745,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973213.9575224,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40572","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/154/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2495"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"]}},"bytes_read":2495,"user_id":"","duration":26.009170862,"size":2777,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973214.6530254,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"53914","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2841"]}},"bytes_read":2841,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776973218.7438269,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/154/logs","headers":{"X-Forwarded-Host":["localhost"],"User-Agent":["node"],"X-Forwarded-For":["172.20.0.1"],"Authorization":[],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["153105acad2c"],"Accept":["*/*"],"Accept-Language":["*"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":34.913182249,"size":3026,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973221.3411489,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40550","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2523"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2523,"user_id":"","duration":34.233658769,"size":2982,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973222.867428,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40556","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2491"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2491,"user_id":"","duration":35.758416592,"size":3050,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776973231.819535,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55204","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/154/telemetry","headers":{"Content-Length":["2493"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":2493,"user_id":"","duration":28.000665137,"size":2780,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973234.5310829,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"DELETE","host":"localhost","uri":"/edge-gateways/154","headers":{"Accept-Encoding":["gzip, deflate"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept":["*/*"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":14.827345246,"size":102,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"error","ts":1776973235.024835,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52060","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/154/presence","headers":{"Content-Length":["186"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":186,"user_id":"","duration":15.612095326,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} -{"level":"info","ts":1776973237.5217144,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49080","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":25.625330765,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973241.1685977,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55216","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2487"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2487,"user_id":"","duration":37.196922501,"size":3051,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973241.9189537,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49128","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2519"]}},"bytes_read":2519,"user_id":"","duration":37.94898388,"size":2977,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973258.7749355,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52070","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"User-Agent":["node"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2485"],"Content-Type":["application/json"]}},"bytes_read":2485,"user_id":"","duration":39.180938819,"size":3044,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973259.8117251,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52066","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["2517"],"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2517,"user_id":"","duration":40.21935995,"size":2976,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973260.1606858,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36426","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.245182355,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973263.9268486,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36314","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Type":["application/json"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":8.035195106,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973273.194342,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40508","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2488"],"Content-Type":["application/json"],"Accept-Language":["*"]}},"bytes_read":2488,"user_id":"","duration":37.305108021,"size":3046,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973273.2535403,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52060","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2520"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2520,"user_id":"","duration":37.366722249,"size":2973,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973273.6401224,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["*/*"],"Accept-Language":["*"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.424368673,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776973281.986647,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41260","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.100470563,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776973287.7324097,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41442","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2848"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776973291.9871025,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36306","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2520"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2520,"user_id":"","duration":40.213322119,"size":2979,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973291.994976,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36294","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2488"]}},"bytes_read":2488,"user_id":"","duration":40.223421775,"size":3048,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973293.0307448,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/install-token","headers":{"Content-Length":["58"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"]}},"bytes_read":58,"user_id":"","duration":14.68514067,"size":433,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973295.8323133,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"]}},"bytes_read":0,"user_id":"","duration":2.677600408,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776973304.2019055,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49634","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.957974346,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973304.7951279,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51640","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["2517"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2517,"user_id":"","duration":36.970411463,"size":2976,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973308.1827219,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51644","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Length":["2485"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"]}},"bytes_read":2485,"user_id":"","duration":40.356662709,"size":3042,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973313.858807,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59682","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":9.62644253,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973314.5838728,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41268","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2848"],"Accept":["application/json"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973322.703504,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-agent/claim","headers":{"Content-Length":["187"],"Accept-Language":["*"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"]}},"bytes_read":187,"user_id":"","duration":25.995215984,"size":1645,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973325.4919016,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33570","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2492"]}},"bytes_read":2492,"user_id":"","duration":41.547097082,"size":3049,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776973325.8441186,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.15","remote_port":"39736","client_ip":"172.20.0.15","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/155/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["181"]}},"bytes_read":181,"user_id":"","duration":2.529517778,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973326.1874619,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33556","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2524"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2524,"user_id":"","duration":42.244732103,"size":2976,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973335.6781914,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33570","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":9.829808281,"size":175,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776973340.473226,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59654","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2523"]}},"bytes_read":2523,"user_id":"","duration":40.500383358,"size":2982,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776973340.6441882,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47590","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":1.424641511,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973340.6532674,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59670","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Length":["2491"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2491,"user_id":"","duration":40.678632861,"size":3048,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973343.7020473,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57288","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/backlog","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["64"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":64,"user_id":"","duration":8.000503104,"size":141,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776973347.00008,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50696","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2841"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2841,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973350.7502809,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57292","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/presence","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["205"]}},"bytes_read":205,"user_id":"","duration":15.048633125,"size":289,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973354.1884093,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53734","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2530"],"Accept":["*/*"]}},"bytes_read":2530,"user_id":"","duration":38.267975485,"size":2981,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973354.336098,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53726","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2498"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2498,"user_id":"","duration":38.417451605,"size":3056,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973357.129455,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/155","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"User-Agent":["node"],"Accept":["*/*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":9.398927959,"size":1582,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973364.511086,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55196","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2405"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":2405,"user_id":"","duration":17.102659775,"size":2029,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973366.5565705,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57284","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2521"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2521,"user_id":"","duration":34.938857145,"size":2980,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973366.7977962,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/155","headers":{"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Proto":["http"],"User-Agent":["node"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-For":["172.20.0.1"],"Accept":["*/*"],"Accept-Language":["*"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":9.15834276,"size":2029,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973368.2221746,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57282","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2489"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2489,"user_id":"","duration":36.606764088,"size":3051,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973369.0006938,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39062","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":28.333467488,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973374.4062028,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/155","headers":{"User-Agent":["node"],"Accept-Language":["*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["153105acad2c"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":0,"user_id":"","duration":7.58271783,"size":2029,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973379.708094,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37206","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2495"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2495,"user_id":"","duration":15.86971363,"size":2035,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776973382.701061,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55214","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["2491"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2491,"user_id":"","duration":34.675866137,"size":3048,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973385.2115538,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55200","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2523"],"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"]}},"bytes_read":2523,"user_id":"","duration":37.188177226,"size":2977,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973386.6435454,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/155/stream-session","headers":{"Content-Type":["application/json"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"Content-Length":["51"],"Accept":["*/*"],"Accept-Language":["*"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"]}},"bytes_read":51,"user_id":"","duration":12.234456589,"size":482,"status":201,"resp_headers":{"Status":["201 Created"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973390.3581173,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55214","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":5.666851628,"size":172,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973391.046746,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41002","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":28.35530682,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973391.7124102,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55200","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/browser-streams/validate","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["327"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":327,"user_id":"","duration":5.064129822,"size":251,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973397.7365422,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53646","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/telemetry","headers":{"User-Agent":["node"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2497"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2497,"user_id":"","duration":18.023585371,"size":2047,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973398.9688354,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37212","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":2521,"user_id":"","duration":34.437280986,"size":2976,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973399.857094,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37210","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2489"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"]}},"bytes_read":2489,"user_id":"","duration":35.325616461,"size":3046,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"error","ts":1776973410.8134851,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43954","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.109440382,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973412.8708642,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45152","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2848"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776973414.7877488,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53660","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2523"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":2523,"user_id":"","duration":34.322610074,"size":2977,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973416.3193963,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37206","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["2491"],"Content-Type":["application/json"]}},"bytes_read":2491,"user_id":"","duration":35.856020305,"size":3054,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973426.836864,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55200","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2497"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"]}},"bytes_read":2497,"user_id":"","duration":31.274658742,"size":2419,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973433.4785485,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/155/operations","headers":{"Content-Type":["application/json"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"User-Agent":["node"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Content-Length":["256"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept":["*/*"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":256,"user_id":"","duration":41.217923272,"size":2434,"status":201,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["201 Created"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973435.3868475,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36858","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2491"]}},"bytes_read":2491,"user_id":"","duration":39.036523256,"size":3046,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973435.626074,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36842","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2523"]}},"bytes_read":2523,"user_id":"","duration":39.27716921,"size":2971,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776973438.693665,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41152","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2495"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2495,"user_id":"","duration":26.930737834,"size":2424,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776973439.3337505,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43496","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2848"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776973439.8828104,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"54104","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":8.823200549,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776973441.5635204,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45488","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/backlog","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["64"],"Connection":["keep-alive"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":64,"user_id":"","duration":15.378268416,"size":734,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973448.7040336,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41152","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":8.819219192,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973452.905517,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41170","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Content-Length":["2489"],"Accept":["*/*"]}},"bytes_read":2489,"user_id":"","duration":39.947229325,"size":3045,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973453.9542668,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41156","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2521,"user_id":"","duration":40.997615359,"size":2969,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973456.7718487,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45500","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2495"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2495,"user_id":"","duration":28.915680396,"size":2488,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973471.8531437,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45506","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2520"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2520,"user_id":"","duration":43.24457677,"size":2977,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973472.487803,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55200","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2488"]}},"bytes_read":2488,"user_id":"","duration":43.883729303,"size":3047,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776973473.328885,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41156","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/operations/63/events","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["221"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":221,"user_id":"","duration":17.915980326,"size":722,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973473.4022713,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45488","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/telemetry","headers":{"Content-Length":["2495"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2495,"user_id":"","duration":29.602445431,"size":2488,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776973478.0051823,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40728","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":1.651011057,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973483.2988663,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45966","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2521"]}},"bytes_read":2521,"user_id":"","duration":38.642995839,"size":2972,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973483.9586203,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36112","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2840"],"Accept":["application/json"]}},"bytes_read":2840,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973485.4950318,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37780","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/operations/63/events","headers":{"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["198"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":198,"user_id":"","duration":18.250407051,"size":774,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973486.5316117,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45970","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"User-Agent":["node"],"Content-Length":["2489"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2489,"user_id":"","duration":41.873596721,"size":3049,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973487.8949614,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59850","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/telemetry","headers":{"Accept-Language":["*"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["2982"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2982,"user_id":"","duration":32.483967302,"size":2664,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973495.0793436,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35604","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/operations/63/events","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["183"],"Accept":["*/*"]}},"bytes_read":183,"user_id":"","duration":17.623767173,"size":814,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973499.1523488,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45500","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":39.952712921,"size":2971,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973499.4363716,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37764","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["2993"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":2993,"user_id":"","duration":32.1686921,"size":2711,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973500.4158552,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59852","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2490"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2490,"user_id":"","duration":41.213810951,"size":3047,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776973505.8538015,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/155/operations","headers":{"Accept":["*/*"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"User-Agent":["node"],"X-Forwarded-Host":["localhost"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["153105acad2c"],"Accept-Language":["*"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":32.378297089,"size":850,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973507.7425625,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40736","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":29.709961684,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973508.2276464,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35580","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2981"]}},"bytes_read":2981,"user_id":"","duration":30.776090416,"size":2718,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776973509.1441832,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45500","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/backlog","headers":{"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["64"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":64,"user_id":"","duration":7.221523957,"size":141,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776973511.1722643,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45488","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2524"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2524,"user_id":"","duration":35.446630627,"size":2975,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973511.4226604,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55200","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["2492"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2492,"user_id":"","duration":35.695494246,"size":3052,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776973511.4233477,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35592","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/operations/63/complete","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["246"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":246,"user_id":"","duration":33.969671826,"size":852,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973519.5024307,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45488","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/backlog","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["64"]}},"bytes_read":64,"user_id":"","duration":8.077385632,"size":141,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973523.7864282,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34362","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2494"]}},"bytes_read":2494,"user_id":"","duration":30.791136536,"size":2743,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973526.5744793,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58214","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":26.530633157,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973527.5393705,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34354","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2488"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2488,"user_id":"","duration":35.720972054,"size":3047,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776973529.803444,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59850","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2520"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2520,"user_id":"","duration":37.987682846,"size":2979,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973530.5352893,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45488","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Length":["76"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":8.526208767,"size":172,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973537.188481,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35580","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["2495"]}},"bytes_read":2495,"user_id":"","duration":28.408908579,"size":2746,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973544.805568,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/155/logs","headers":{"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["*/*"],"Authorization":[],"X-Forwarded-Prefix":["/api"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["153105acad2c"]}},"bytes_read":0,"user_id":"","duration":38.92715019,"size":2981,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} -{"level":"error","ts":1776973548.1229367,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60330","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.130501333,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973550.488344,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58622","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"User-Agent":["node"],"Content-Length":["2484"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2484,"user_id":"","duration":42.369114708,"size":3045,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776973550.5571094,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58632","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2516"]}},"bytes_read":2516,"user_id":"","duration":42.4357329,"size":2977,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776973556.9308054,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42614","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2848"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973558.7007635,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47942","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2492"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2492,"user_id":"","duration":34.046901266,"size":2742,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776973566.1119492,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47958","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2518"]}},"bytes_read":2518,"user_id":"","duration":41.203927631,"size":2974,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973567.8889723,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34362","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"Content-Length":["2486"]}},"bytes_read":2486,"user_id":"","duration":42.982710249,"size":3045,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973569.3873587,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58802","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2494"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2494,"user_id":"","duration":28.459649662,"size":2744,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"error","ts":1776973570.279852,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42700","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.878219322,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776973574.1147811,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60334","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2848"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973577.5150795,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41492","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["76"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":7.232803975,"size":172,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973577.5783083,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58792","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["2520"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2520,"user_id":"","duration":36.650637453,"size":2974,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973581.416326,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58790","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Content-Length":["2488"]}},"bytes_read":2488,"user_id":"","duration":40.488863104,"size":3045,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973587.7148492,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50594","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2508"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"]}},"bytes_read":2508,"user_id":"","duration":30.662244438,"size":2754,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973588.960362,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/155/statistics","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["153105acad2c"],"Accept-Language":["*"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"Accept":["*/*"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":44.113143352,"size":2898,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973595.5749054,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50582","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["*"],"Content-Length":["2502"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2502,"user_id":"","duration":38.525120008,"size":3061,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973595.5749056,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50608","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2534"]}},"bytes_read":2534,"user_id":"","duration":38.522272105,"size":2984,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973603.3108773,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41536","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/telemetry","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2494"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"]}},"bytes_read":2494,"user_id":"","duration":29.255931936,"size":2745,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776973606.3424904,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/155/shell-sessions","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Authorization":[],"Content-Length":["101"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept":["*/*"],"Content-Type":["application/json"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":101,"user_id":"","duration":17.378092219,"size":462,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776973607.9642947,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60054","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["366"],"Accept":["application/json"]}},"bytes_read":366,"user_id":"","duration":0.95369783,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776973609.6648507,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41506","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2488"],"Content-Type":["application/json"]}},"bytes_read":2488,"user_id":"","duration":35.612256014,"size":3048,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973612.806145,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56398","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2840"]}},"bytes_read":2840,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973612.8452694,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41522","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2520"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2520,"user_id":"","duration":38.762491266,"size":2972,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973616.1100943,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50214","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/shell-sessions/validate","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":9.735140248,"size":343,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973619.004602,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52182","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2497"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2497,"user_id":"","duration":29.81899444,"size":2739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973626.750626,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52180","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Length":["2491"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2491,"user_id":"","duration":37.566908271,"size":3046,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973627.261346,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52198","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2523"]}},"bytes_read":2523,"user_id":"","duration":38.075737677,"size":2969,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973632.6297603,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"32812","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/shell-sessions/opened","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Length":["131"]}},"bytes_read":131,"user_id":"","duration":10.739421938,"size":369,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973637.4278874,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60060","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":29.433640357,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776973638.1806674,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50200","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/telemetry","headers":{"Content-Length":["2491"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2491,"user_id":"","duration":32.182656594,"size":2804,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973643.4678214,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50210","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2485"]}},"bytes_read":2485,"user_id":"","duration":37.454064447,"size":3046,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776973643.6993575,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41536","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2517"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2517,"user_id":"","duration":37.687538639,"size":2970,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973654.616629,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"32796","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2502"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2502,"user_id":"","duration":32.710524752,"size":2837,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973657.2408555,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42390","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":27.22481661,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973658.7441566,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51466","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":6.73251206,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973661.1973805,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52182","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2496"]}},"bytes_read":2496,"user_id":"","duration":39.294005612,"size":3051,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973664.222692,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"32782","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2528"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"]}},"bytes_read":2528,"user_id":"","duration":42.316589629,"size":2978,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776973664.2752743,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36692","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2506"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":2506,"user_id":"","duration":26.293086798,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973666.165107,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"DELETE","host":"localhost","uri":"/edge-gateways/155","headers":{"Accept":["*/*"],"X-Forwarded-Server":["153105acad2c"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":12.402386697,"size":102,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"error","ts":1776973669.8100224,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51474","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/shell-sessions/close","headers":{"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["320"],"Connection":["keep-alive"]}},"bytes_read":320,"user_id":"","duration":16.721948588,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776973669.8109324,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51484","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/155/presence","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["186"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":186,"user_id":"","duration":16.593240737,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} -{"level":"info","ts":1776973675.211618,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36680","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Content-Length":["2532"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2532,"user_id":"","duration":37.212796727,"size":2978,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973676.617628,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36690","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"User-Agent":["node"],"Content-Length":["2500"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2500,"user_id":"","duration":38.617601253,"size":3051,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776973678.9986272,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52642","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.979087151,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973683.004151,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46316","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2848"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973688.8934693,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51504","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2534"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2534,"user_id":"","duration":35.181631972,"size":2983,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973691.4569252,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51488","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2502"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2502,"user_id":"","duration":37.746827758,"size":3054,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} -{"level":"error","ts":1776973700.5082517,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56814","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.281920876,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776973707.2694187,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49488","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2527"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2527,"user_id":"","duration":37.739660064,"size":2978,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776973707.4424438,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52654","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2848"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973707.653859,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53854","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":7.122381971,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973708.3720288,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49478","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["2495"]}},"bytes_read":2495,"user_id":"","duration":38.844913141,"size":3047,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973720.4594104,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52734","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Length":["2531"]}},"bytes_read":2531,"user_id":"","duration":34.767734068,"size":2977,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973721.7122073,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52720","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Length":["2499"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2499,"user_id":"","duration":36.034963408,"size":3057,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973733.6008992,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53872","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2532"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"]}},"bytes_read":2532,"user_id":"","duration":31.683108886,"size":2977,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973735.5847309,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53862","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2500"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2500,"user_id":"","duration":33.669131609,"size":3054,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973737.515498,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/146/shell-sessions","headers":{"User-Agent":["node"],"Accept":["*/*"],"Content-Type":["application/json"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Content-Length":["86"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":86,"user_id":"","duration":38.247714875,"size":452,"status":201,"resp_headers":{"Server":["Caddy"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776973738.622491,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37280","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":1.535694912,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973738.9441917,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"35408","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2851"]}},"bytes_read":2851,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973745.4671152,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36284","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/shell-sessions/validate","headers":{"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"]}},"bytes_read":76,"user_id":"","duration":7.940556567,"size":332,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973751.8606415,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35816","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2499"]}},"bytes_read":2499,"user_id":"","duration":33.986889228,"size":3055,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776973752.0745883,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35814","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"User-Agent":["node"],"Content-Length":["2531"],"Content-Type":["application/json"],"Accept-Language":["*"]}},"bytes_read":2531,"user_id":"","duration":34.202396632,"size":2982,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973759.5778828,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59068","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/shell-sessions/opened","headers":{"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["131"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":131,"user_id":"","duration":9.625883616,"size":359,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973765.1233604,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37286","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.482592079,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973767.7002838,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36260","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2534"]}},"bytes_read":2534,"user_id":"","duration":33.786549167,"size":2983,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776973770.291633,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36272","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2502"]}},"bytes_read":2502,"user_id":"","duration":36.375741829,"size":3113,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973781.0677629,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59056","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2521"],"Content-Type":["application/json"]}},"bytes_read":2521,"user_id":"","duration":31.09983402,"size":2985,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973785.9731627,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59052","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2489"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2489,"user_id":"","duration":36.007137637,"size":3133,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973786.637795,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42920","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.026305851,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973788.5695426,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60588","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":5.971266658,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973798.2731378,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33924","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Content-Length":["2521"]}},"bytes_read":2521,"user_id":"","duration":32.517069715,"size":2975,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973799.8116553,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33936","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["2489"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2489,"user_id":"","duration":34.053346533,"size":3130,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776973808.9902303,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51520","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["345"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":345,"user_id":"","duration":1.33993118,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973809.9645844,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"35624","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2848"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973812.438848,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/146/shell-sessions","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Content-Length":["94"],"Accept":["*/*"],"Content-Type":["application/json"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"X-Forwarded-Port":["80"]}},"bytes_read":94,"user_id":"","duration":15.500030185,"size":457,"status":201,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973813.9735005,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60558","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2531"]}},"bytes_read":2531,"user_id":"","duration":32.103300792,"size":2980,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973821.4703307,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59056","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2499"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2499,"user_id":"","duration":39.56048063,"size":3183,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973822.343075,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54000","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/shell-sessions/validate","headers":{"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":9.84879622,"size":337,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973822.9250438,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60572","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/shell-sessions/close","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["316"],"Content-Type":["application/json"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":316,"user_id":"","duration":40.990261331,"size":495,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973823.0536864,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54868","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/shell-sessions/close","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["320"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":320,"user_id":"","duration":43.258664007,"size":495,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776973830.9374537,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.674808966,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973832.5726352,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60472","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2534"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":2534,"user_id":"","duration":34.545381698,"size":2978,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973834.1187465,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51524","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2848"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776973835.666388,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60470","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["2502"]}},"bytes_read":2502,"user_id":"","duration":37.641141647,"size":3186,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973838.3231676,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47310","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":7.382853018,"size":172,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776973840.9302359,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47326","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/shell-sessions/opened","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Content-Length":["131"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":131,"user_id":"","duration":9.921650994,"size":363,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973848.5488894,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60558","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["2529"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":2529,"user_id":"","duration":33.864444266,"size":2979,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973853.0054228,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54014","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2497"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"User-Agent":["node"]}},"bytes_read":2497,"user_id":"","duration":38.295482095,"size":3202,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973859.3574011,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["*"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Host":["localhost"],"Accept":["*/*"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":1.050798685,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973864.3957736,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47324","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2519"],"Connection":["keep-alive"]}},"bytes_read":2519,"user_id":"","duration":33.364071256,"size":2972,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"error","ts":1776973868.4283905,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37428","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":0.908890294,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973870.6586702,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47320","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2487"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":2487,"user_id":"","duration":39.629759977,"size":3215,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973870.8004994,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49658","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2851"]}},"bytes_read":2851,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973875.9492564,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/install-token","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"Content-Length":["58"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Language":["*"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["153105acad2c"],"Accept":["*/*"]}},"bytes_read":58,"user_id":"","duration":11.900689509,"size":433,"status":201,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["201 Created"]}} -{"level":"info","ts":1776973877.0787413,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"X-Forwarded-Prefix":["/api"],"Accept":["*/*"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":1.058315952,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973885.3419528,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35138","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2531"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2531,"user_id":"","duration":37.653332841,"size":2980,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973892.9328125,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35146","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Content-Length":["2499"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2499,"user_id":"","duration":45.242427178,"size":3251,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973896.0774765,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35158","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/shell-sessions/close","headers":{"Content-Length":["332"],"Connection":["keep-alive"],"Accept-Language":["*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"]}},"bytes_read":332,"user_id":"","duration":48.131445081,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973896.281931,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60558","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/shell-sessions/close","headers":{"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["336"]}},"bytes_read":336,"user_id":"","duration":47.220356017,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973896.456154,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37444","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":28.003660479,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973899.4004214,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33116","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2515"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2515,"user_id":"","duration":35.514798867,"size":2971,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973904.4814448,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-agent/claim","headers":{"Content-Length":["187"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Type":["application/json"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"]}},"bytes_read":187,"user_id":"","duration":26.507153971,"size":1646,"status":201,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["201 Created"]}} -{"level":"info","ts":1776973907.5861998,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33130","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2483"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2483,"user_id":"","duration":43.698841065,"size":3238,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"error","ts":1776973907.7830713,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.15","remote_port":"37746","client_ip":"172.20.0.15","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/156/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["181"]}},"bytes_read":181,"user_id":"","duration":2.825675246,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973914.147537,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42812","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/validate","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":76,"user_id":"","duration":6.294005265,"size":175,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973917.8069553,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56174","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":37.779581357,"size":2978,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776973918.538749,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50830","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":28.06318929,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973919.172038,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39980","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":6.742002393,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973921.4341104,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39984","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/backlog","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["64"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":64,"user_id":"","duration":7.283613236,"size":141,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973924.279468,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56182","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2490"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":2490,"user_id":"","duration":44.25033,"size":3243,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973928.2397363,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39986","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/presence","headers":{"Accept":["*/*"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["205"],"Content-Type":["application/json"]}},"bytes_read":205,"user_id":"","duration":14.087491538,"size":289,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973932.1550164,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35146","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2517"],"Accept":["*/*"],"Accept-Language":["*"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2517,"user_id":"","duration":36.558802686,"size":2969,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776973935.6698062,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/156","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"Authorization":[],"Accept":["*/*"],"X-Forwarded-Server":["153105acad2c"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":0,"user_id":"","duration":9.716228181,"size":1579,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973939.099412,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43216","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["node"],"Content-Length":["2485"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2485,"user_id":"","duration":43.520193319,"size":3244,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776973939.3282852,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59402","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.912405237,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973944.483612,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34550","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2848"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973944.909659,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51172","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2400"]}},"bytes_read":2400,"user_id":"","duration":19.101686511,"size":2033,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973945.9183092,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/156","headers":{"Sec-Fetch-Mode":["cors"],"Authorization":[],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["153105acad2c"],"X-Forwarded-Port":["80"],"Accept-Language":["*"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":9.72269748,"size":2033,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973948.27382,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39978","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"]}},"bytes_read":2521,"user_id":"","duration":36.517332932,"size":2976,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973954.0662582,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/156","headers":{"Authorization":[],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":8.143701475,"size":2033,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973954.4521298,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39962","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"],"Content-Length":["2489"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"]}},"bytes_read":2489,"user_id":"","duration":42.698306373,"size":3247,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973959.132117,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43216","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/telemetry","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2494"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2494,"user_id":"","duration":17.441330533,"size":2036,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776973960.9899848,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33868","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.369595775,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776973962.3752828,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51176","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2518"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"]}},"bytes_read":2518,"user_id":"","duration":35.585662767,"size":2971,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973964.712439,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59418","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2848"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776973964.8975399,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/156/stream-session","headers":{"Accept-Language":["*"],"Content-Type":["application/json"],"X-Forwarded-Host":["localhost"],"User-Agent":["node"],"Content-Length":["51"],"Accept":["*/*"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":51,"user_id":"","duration":10.827389097,"size":478,"status":201,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Status":["201 Created"]}} -{"level":"info","ts":1776973968.6479073,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50032","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Content-Length":["76"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":7.654861569,"size":172,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776973969.642349,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56182","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2486"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2486,"user_id":"","duration":42.854825186,"size":3241,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973970.5279436,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51176","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/browser-streams/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["327"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"]}},"bytes_read":327,"user_id":"","duration":5.625102611,"size":251,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776973975.149375,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53066","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2496"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":2496,"user_id":"","duration":17.354208581,"size":2047,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776973979.9451516,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60660","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2520"]}},"bytes_read":2520,"user_id":"","duration":36.900353118,"size":2972,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776973985.0228443,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60650","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2488"]}},"bytes_read":2488,"user_id":"","duration":41.979661369,"size":3244,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776973994.8350172,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43216","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2522,"user_id":"","duration":35.362678831,"size":2976,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776973997.1132991,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60826","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":1.108991017,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"]}} -{"level":"info","ts":1776973999.3532438,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53072","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["2490"]}},"bytes_read":2490,"user_id":"","duration":39.878703248,"size":3244,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974000.7648675,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"32934","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2841"]}},"bytes_read":2841,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974005.5074952,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51176","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2497"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2497,"user_id":"","duration":31.600794539,"size":2427,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974012.8189158,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53066","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["2521"],"Accept-Language":["*"]}},"bytes_read":2521,"user_id":"","duration":37.353085583,"size":2971,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974013.1553247,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/156/operations","headers":{"Authorization":[],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Prefix":["/api"],"X-Real-Ip":["172.20.0.1"],"Content-Type":["application/json"],"X-Forwarded-Port":["80"],"Content-Length":["256"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":256,"user_id":"","duration":42.071533478,"size":2439,"status":201,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974015.4587822,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"32870","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2489"],"Accept":["*/*"]}},"bytes_read":2489,"user_id":"","duration":25.666637005,"size":2429,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776974017.232768,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"41080","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Length":["2489"],"Connection":["keep-alive"],"Accept-Language":["*"],"User-Agent":["node"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2489,"user_id":"","duration":41.765115013,"size":3245,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974017.9605627,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56520","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/backlog","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["64"]}},"bytes_read":64,"user_id":"","duration":12.451424024,"size":732,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974026.6799653,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45650","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2515"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2515,"user_id":"","duration":35.956843641,"size":2978,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974027.5278387,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60836","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Length":["163"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":163,"user_id":"","duration":30.386310418,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974028.4920244,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51176","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2493"]}},"bytes_read":2493,"user_id":"","duration":22.63262804,"size":2492,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974034.4406502,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45658","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Content-Length":["2483"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2483,"user_id":"","duration":43.691979676,"size":3242,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974040.7692618,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56544","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2519"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"]}},"bytes_read":2519,"user_id":"","duration":33.933308311,"size":2975,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974045.3310995,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56520","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2495"]}},"bytes_read":2495,"user_id":"","duration":23.595002613,"size":2490,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776974045.8560996,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46532","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.692122571,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974047.4963214,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36622","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/operations/64/events","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["221"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":221,"user_id":"","duration":14.165812781,"size":716,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776974047.5523574,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56528","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["node"],"Content-Length":["2487"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2487,"user_id":"","duration":40.718674845,"size":3244,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974049.1892674,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56544","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Accept":["*/*"],"User-Agent":["node"],"Content-Type":["application/json"]}},"bytes_read":76,"user_id":"","duration":8.035884066,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974055.6290648,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50270","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2521,"user_id":"","duration":33.062953924,"size":2972,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776974058.61833,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36608","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["2994"]}},"bytes_read":2994,"user_id":"","duration":25.289954306,"size":2597,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974058.7149692,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43344","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/operations/64/events","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["198"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":198,"user_id":"","duration":13.868567378,"size":770,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776974060.6527815,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50278","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2489"],"Connection":["keep-alive"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2489,"user_id":"","duration":38.084002793,"size":3247,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974061.2917159,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/156/operations","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["153105acad2c"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"X-Forwarded-Proto":["http"],"User-Agent":["node"],"Accept":["*/*"],"X-Forwarded-Prefix":["/api"]}},"bytes_read":0,"user_id":"","duration":13.657150489,"size":770,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776974068.2118938,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34668","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["345"],"Accept":["application/json"]}},"bytes_read":345,"user_id":"","duration":2.051654919,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776974068.8630636,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43342","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["2979"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2979,"user_id":"","duration":23.996213272,"size":2626,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974069.420183,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46928","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2848"],"Accept":["application/json"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974069.4737155,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44920","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/operations/64/events","headers":{"Content-Length":["183"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":183,"user_id":"","duration":14.579149541,"size":848,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974069.5408955,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45658","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2522"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2522,"user_id":"","duration":32.387091929,"size":2975,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974075.8799644,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36628","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Length":["2490"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":2490,"user_id":"","duration":38.723494275,"size":3248,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974076.3026981,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47272","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/backlog","headers":{"Content-Length":["64"],"Connection":["keep-alive"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"]}},"bytes_read":64,"user_id":"","duration":7.408158968,"size":141,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974076.929121,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44904","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["2985"],"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2985,"user_id":"","duration":22.036715898,"size":2727,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974077.7761114,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44926","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/operations/64/complete","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["246"]}},"bytes_read":246,"user_id":"","duration":22.881446038,"size":848,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974084.3536875,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44896","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2517"]}},"bytes_read":2517,"user_id":"","duration":30.570744469,"size":2968,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974084.6173,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47272","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/backlog","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["64"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":64,"user_id":"","duration":6.839277429,"size":141,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776974089.6376712,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33986","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.191792001,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776974089.8705893,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34674","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2848"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974090.9703107,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44888","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2485"],"Connection":["keep-alive"]}},"bytes_read":2485,"user_id":"","duration":37.18914364,"size":3244,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776974092.8975644,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45658","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/telemetry","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"Content-Length":["2495"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":2495,"user_id":"","duration":22.531226885,"size":2777,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974094.251523,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/156/operations","headers":{"Accept":["*/*"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"X-Forwarded-Host":["localhost"],"User-Agent":["node"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":32.401550333,"size":852,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974095.8808792,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33846","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Length":["76"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":6.220378823,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974102.08908,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47282","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2521"]}},"bytes_read":2521,"user_id":"","duration":32.436204596,"size":2981,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974107.5295281,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47298","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2489"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":2489,"user_id":"","duration":37.875093264,"size":3246,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974110.6876726,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33838","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2507"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2507,"user_id":"","duration":23.950544235,"size":2780,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974119.0629325,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47272","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Content-Length":["2523"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"]}},"bytes_read":2523,"user_id":"","duration":33.075527685,"size":2971,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776974124.5660298,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44896","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Length":["2491"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"User-Agent":["node"]}},"bytes_read":2491,"user_id":"","duration":38.55522533,"size":3246,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"error","ts":1776974126.0797477,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49630","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":1.422959604,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776974126.287646,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/156/logs","headers":{"Accept-Language":["*"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"User-Agent":["node"],"Accept":["*/*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["153105acad2c"],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":32.009754087,"size":3031,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974128.300588,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47282","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2495"]}},"bytes_read":2495,"user_id":"","duration":25.939909622,"size":2765,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974129.0006955,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44890","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2841"]}},"bytes_read":2841,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974134.3992453,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44534","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2521,"user_id":"","duration":32.739995441,"size":2969,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974141.726958,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44522","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Content-Length":["2489"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2489,"user_id":"","duration":40.06978528,"size":3242,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974143.5517929,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56980","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2497"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":2497,"user_id":"","duration":25.03324178,"size":2772,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974150.542514,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/156/statistics","headers":{"Accept-Language":["*"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["node"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Prefix":["/api"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"]}},"bytes_read":0,"user_id":"","duration":24.252101305,"size":2912,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974150.975488,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56966","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2523"],"Connection":["keep-alive"]}},"bytes_read":2523,"user_id":"","duration":33.158479987,"size":2978,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974153.0471232,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49642","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":26.947335874,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974156.97245,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56952","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2491"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2491,"user_id":"","duration":39.15072276,"size":3247,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974159.8561406,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46614","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/telemetry","headers":{"Accept-Language":["*"],"Content-Length":["2495"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2495,"user_id":"","duration":25.412114048,"size":2770,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974165.8817277,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46596","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["2520"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2520,"user_id":"","duration":32.168806294,"size":2975,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974166.7698686,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/edge-gateways/156/shell-sessions","headers":{"Content-Length":["101"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Forwarded-Prefix":["/api"],"Accept":["*/*"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["153105acad2c"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["node"],"Accept-Language":["*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"]}},"bytes_read":101,"user_id":"","duration":16.205038931,"size":461,"status":201,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["201 Created"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974171.5158167,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46606","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2488"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2488,"user_id":"","duration":37.801227028,"size":3245,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974173.7501538,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46408","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/telemetry","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2496"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2496,"user_id":"","duration":23.408772831,"size":2774,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974174.310548,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"54882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":26.225055892,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974174.8691134,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56168","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/shell-sessions/validate","headers":{"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Connection":["keep-alive"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":8.094501691,"size":341,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974176.3789003,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56172","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":6.296412242,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974181.395494,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52834","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":31.65963716,"size":2979,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974187.0819826,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52826","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Length":["2490"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"User-Agent":["node"]}},"bytes_read":2490,"user_id":"","duration":37.315247269,"size":3248,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974192.797089,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46596","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2495"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2495,"user_id":"","duration":26.43720747,"size":2840,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974193.525441,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35848","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/shell-sessions/opened","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["131"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":131,"user_id":"","duration":10.711745839,"size":369,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974196.447685,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56146","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"]}},"bytes_read":2521,"user_id":"","duration":30.762807251,"size":2975,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776974196.7933636,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60006","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.663197652,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974196.8577597,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39662","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2848"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974203.5889826,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56154","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2489"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2489,"user_id":"","duration":37.902344445,"size":3250,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974210.0454597,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35836","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2494"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"]}},"bytes_read":2494,"user_id":"","duration":27.234204113,"size":2857,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776974213.846074,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35834","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["2520"]}},"bytes_read":2520,"user_id":"","duration":31.762173549,"size":2973,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776974218.3703127,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["345"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":345,"user_id":"","duration":1.333393257,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974218.936182,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52834","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2488"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2488,"user_id":"","duration":36.854969953,"size":3246,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974220.1186798,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60008","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2848"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974225.7663765,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55238","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["2503"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"]}},"bytes_read":2503,"user_id":"","duration":27.093678465,"size":2894,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974225.8350854,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56270","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":7.461492874,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974227.7306821,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55270","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/shell-sessions/close","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["332"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":332,"user_id":"","duration":28.802076774,"size":509,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974231.6634858,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56146","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2529"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2529,"user_id":"","duration":32.882271258,"size":2979,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974236.140037,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways/156/logs","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Proto":["http"],"Accept-Language":["*"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["153105acad2c"],"User-Agent":["node"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":36.963489043,"size":3453,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974236.4722896,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55254","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2497"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2497,"user_id":"","duration":37.689123202,"size":3253,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776974242.060272,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56268","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2503"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2503,"user_id":"","duration":27.295401094,"size":2888,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974247.292887,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35834","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2529"]}},"bytes_read":2529,"user_id":"","duration":32.5167505,"size":2975,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776974250.8221574,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44008","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/presence","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Content-Length":["186"]}},"bytes_read":186,"user_id":"","duration":14.483832579,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776974251.0296154,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.10","remote_port":"46360","client_ip":"172.20.0.10","proto":"HTTP/1.1","method":"DELETE","host":"localhost","uri":"/edge-gateways/156","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Authorization":[],"Accept-Encoding":["gzip, deflate"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["node"],"Accept":["*/*"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Prefix":["/api"],"X-Forwarded-Server":["153105acad2c"],"Accept-Language":["*"]}},"bytes_read":0,"user_id":"","duration":11.922822393,"size":102,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776974252.2025833,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44000","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/156/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2504"],"Connection":["keep-alive"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Type":["application/json"]}},"bytes_read":2504,"user_id":"","duration":21.4779338,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974253.707641,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56252","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2497"]}},"bytes_read":2497,"user_id":"","duration":38.92907369,"size":3251,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776974254.8091307,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34770","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":1.381024847,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974255.871204,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"55436","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2842"]}},"bytes_read":2842,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974261.8428273,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43992","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2530"]}},"bytes_read":2530,"user_id":"","duration":31.1181633,"size":2980,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776974268.1236813,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"55270","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"Accept-Language":["*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2498"],"Connection":["keep-alive"]}},"bytes_read":2498,"user_id":"","duration":37.400913992,"size":3251,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776974270.5419018,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49584","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2500"]}},"bytes_read":2500,"user_id":"","duration":7.851088814,"size":162,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776974271.2974157,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33446","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/telemetry","headers":{"Content-Length":["2498"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"]}},"bytes_read":2498,"user_id":"","duration":24.457893661,"size":118,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776974271.6750243,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"49598","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/146/presence","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["184"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":184,"user_id":"","duration":5.287411414,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974278.596598,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33430","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["2530"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2530,"user_id":"","duration":31.732454093,"size":2977,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974280.5890617,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34778","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":25.752057568,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974293.8138077,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43992","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2532"]}},"bytes_read":2532,"user_id":"","duration":31.098715243,"size":2977,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974303.0099013,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45508","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.17196899,"size":64,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776974305.368673,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"46342","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":6.553542634,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974313.8701847,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34974","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2531"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2531,"user_id":"","duration":35.260900369,"size":2983,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776974326.1211975,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47732","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":2.301278742,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974337.3346183,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43992","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2530"],"Content-Type":["application/json"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2530,"user_id":"","duration":42.6288897,"size":2978,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974337.405466,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43820","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2848"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776974349.4499712,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37164","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["345"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":345,"user_id":"","duration":3.046390752,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974365.1997983,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47734","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2848"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974367.1805499,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60376","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":17.699815636,"size":172,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776974367.947718,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47896","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2532"],"Content-Type":["application/json"]}},"bytes_read":2532,"user_id":"","duration":56.849133102,"size":2981,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776974381.8867202,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38088","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Length":["2519"]}},"bytes_read":2519,"user_id":"","duration":53.711339335,"size":2971,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776974386.2611072,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44176","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":1.707825337,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974394.6231368,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39512","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2844"]}},"bytes_read":2844,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974399.7338724,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60366","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2534"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2534,"user_id":"","duration":54.822256643,"size":2982,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974405.8730948,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37036","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Length":["2522"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2522,"user_id":"","duration":45.135976807,"size":2976,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974412.8672872,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44588","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2520"]}},"bytes_read":2520,"user_id":"","duration":36.031557222,"size":2974,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974415.8815114,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44182","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":29.691723814,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974428.425892,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57392","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Content-Length":["2520"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2520,"user_id":"","duration":35.734002719,"size":2974,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974436.204901,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51396","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":27.98208203,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974439.2167718,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57392","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Length":["76"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":9.013465354,"size":172,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776974444.2714036,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39386","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2523"]}},"bytes_read":2523,"user_id":"","duration":35.502511991,"size":2983,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"error","ts":1776974457.028492,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57688","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.82813624,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776974459.1942186,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"54622","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2848"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974460.7665615,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38222","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["2521"]}},"bytes_read":2521,"user_id":"","duration":36.170934532,"size":2975,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974475.295373,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57392","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2520"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2520,"user_id":"","duration":34.334977998,"size":2978,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776974478.8077128,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58950","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.538712295,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974482.9877524,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57704","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2848"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776974486.3693326,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57392","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":7.538613126,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974491.940644,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38594","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["2522"]}},"bytes_read":2522,"user_id":"","duration":35.353749987,"size":2978,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974507.1634614,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"56868","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2516"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2516,"user_id":"","duration":34.479113661,"size":2971,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"error","ts":1776974516.3624833,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":1.856914552,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974517.6124837,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60990","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2849"]}},"bytes_read":2849,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974520.9315882,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57392","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2531"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"]}},"bytes_read":2531,"user_id":"","duration":31.628010667,"size":2979,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776974542.1820264,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57608","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":25.818288818,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974544.765369,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"32878","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2526"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Connection":["keep-alive"]}},"bytes_read":2526,"user_id":"","duration":39.053388947,"size":2979,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974563.8393285,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57392","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2527"],"Connection":["keep-alive"]}},"bytes_read":2527,"user_id":"","duration":41.937382918,"size":2977,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974565.2214746,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"35890","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":26.854618861,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974565.7464755,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34872","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":5.380250539,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974573.8196638,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43120","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2531"]}},"bytes_read":2531,"user_id":"","duration":35.55657808,"size":2976,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974585.873856,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34858","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2520"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2520,"user_id":"","duration":31.014933006,"size":2977,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"error","ts":1776974586.494113,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59878","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.097583695,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974587.2650719,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"53436","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2848"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974602.1556575,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60634","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2533"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2533,"user_id":"","duration":31.226732102,"size":2983,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974607.753573,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59892","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["2848"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2848,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"error","ts":1776974607.958652,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"35618","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["345"]}},"bytes_read":345,"user_id":"","duration":1.202933673,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} -{"level":"info","ts":1776974614.0050464,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43704","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.043522748,"size":172,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974621.7935221,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34858","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2523"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2523,"user_id":"","duration":35.000137921,"size":2983,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776974634.0143204,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60634","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Content-Length":["2529"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":2529,"user_id":"","duration":31.131242865,"size":2980,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"error","ts":1776974643.8720732,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46152","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":0.899097058,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974647.5505037,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"60130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2841"]}},"bytes_read":2841,"user_id":"","duration":0,"size":8008,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} -{"level":"info","ts":1776974651.7718036,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48496","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2533"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":2533,"user_id":"","duration":32.987413047,"size":2987,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974665.8458948,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53440","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2531"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2531,"user_id":"","duration":30.977385708,"size":2982,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776974670.3306005,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46160","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":26.421595613,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974676.175238,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"50970","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2515"],"Connection":["keep-alive"],"User-Agent":["node"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2515,"user_id":"","duration":25.175757398,"size":2975,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974689.160108,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53440","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2530"]}},"bytes_read":2530,"user_id":"","duration":22.535095744,"size":2979,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974690.9279933,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":25.051313018,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974692.5475678,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36140","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":4.66105154,"size":172,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974698.6366017,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57402","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/backlog","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Type":["application/json"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["64"]}},"bytes_read":64,"user_id":"","duration":6.084879494,"size":139,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974706.7937927,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36134","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2517"]}},"bytes_read":2517,"user_id":"","duration":24.06642948,"size":2975,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776974709.9529605,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57520","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2755"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":2755,"user_id":"","duration":17.384985441,"size":2476,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776974710.035401,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57456","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2765"]}},"bytes_read":2765,"user_id":"","duration":17.473939846,"size":2476,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974710.03725,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57488","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2756"]}},"bytes_read":2756,"user_id":"","duration":17.474074746,"size":2476,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974710.044452,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36140","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2767"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2767,"user_id":"","duration":17.492782728,"size":2476,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974710.0451212,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57444","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"User-Agent":["node"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2754"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2754,"user_id":"","duration":17.485968961,"size":2468,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974710.0452886,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53440","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/presence","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["205"]}},"bytes_read":205,"user_id":"","duration":17.495718631,"size":288,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974710.0780282,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57440","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["2759"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2759,"user_id":"","duration":17.521113938,"size":2476,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974710.0816436,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57416","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2767"],"Connection":["keep-alive"]}},"bytes_read":2767,"user_id":"","duration":17.528033252,"size":2476,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974710.1067414,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57438","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2758"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2758,"user_id":"","duration":17.551655721,"size":2476,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974710.1302695,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57530","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Accept-Language":["*"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2761"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2761,"user_id":"","duration":17.561154401,"size":2476,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974710.1303892,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57544","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2757"]}},"bytes_read":2757,"user_id":"","duration":17.559798278,"size":2476,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974710.1643987,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57470","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2771"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2771,"user_id":"","duration":17.602908867,"size":2474,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776974710.166541,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57466","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2761"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2761,"user_id":"","duration":17.60491852,"size":2476,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776974710.1773424,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57476","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"User-Agent":["node"],"Content-Length":["2753"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2753,"user_id":"","duration":17.61460441,"size":2476,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974710.2089813,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57504","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2758"]}},"bytes_read":2758,"user_id":"","duration":17.644335062,"size":2476,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974710.317251,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57432","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"User-Agent":["node"],"Content-Length":["2756"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2756,"user_id":"","duration":17.762912108,"size":2476,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974710.466413,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57570","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2761"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Connection":["keep-alive"]}},"bytes_read":2761,"user_id":"","duration":17.895750459,"size":2481,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974710.514765,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57594","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2760"]}},"bytes_read":2760,"user_id":"","duration":17.944243777,"size":2481,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974710.5623279,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57582","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2761"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2761,"user_id":"","duration":17.991689603,"size":2481,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974710.6422398,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57420","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2759"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2759,"user_id":"","duration":18.08814233,"size":2481,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974710.6955736,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57514","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2754"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":2754,"user_id":"","duration":18.129867307,"size":2481,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974710.7042956,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57630","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2758"]}},"bytes_read":2758,"user_id":"","duration":17.878992276,"size":2481,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974711.060881,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57464","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2768"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2768,"user_id":"","duration":18.499355993,"size":2481,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974716.1446793,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57474","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2760"],"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2760,"user_id":"","duration":23.582957151,"size":2484,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974723.1517687,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57552","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2760"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Type":["application/json"],"User-Agent":["node"]}},"bytes_read":2760,"user_id":"","duration":30.555011734,"size":2478,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974726.523085,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57714","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Content-Length":["2761"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2761,"user_id":"","duration":33.634821385,"size":2483,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974726.537144,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57632","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Length":["2756"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2756,"user_id":"","duration":33.685433919,"size":2483,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974726.6221242,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57608","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2767"]}},"bytes_read":2767,"user_id":"","duration":33.770553956,"size":2483,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776974726.7225204,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57634","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Length":["2760"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2760,"user_id":"","duration":33.870899184,"size":2483,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974726.9885538,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57452","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2763"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2763,"user_id":"","duration":34.400743053,"size":2483,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974726.9885538,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57596","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["2762"]}},"bytes_read":2762,"user_id":"","duration":34.13879073,"size":2483,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974726.9885638,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57658","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2760"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2760,"user_id":"","duration":34.13447085,"size":2483,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974727.0262177,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57702","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2763"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2763,"user_id":"","duration":34.139423057,"size":2483,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974727.1197355,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57674","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2759"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2759,"user_id":"","duration":34.265635616,"size":2483,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974727.142784,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57554","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["2773"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":2773,"user_id":"","duration":34.546027867,"size":2483,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974727.1559887,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57700","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2760"]}},"bytes_read":2760,"user_id":"","duration":34.297334321,"size":2483,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974727.1606848,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57696","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2760"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2760,"user_id":"","duration":34.303451598,"size":2483,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974727.2072153,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57718","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Accept":["*/*"],"Content-Length":["2760"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2760,"user_id":"","duration":34.31895819,"size":2483,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776974727.208971,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57678","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Language":["*"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2770"]}},"bytes_read":2770,"user_id":"","duration":34.354210297,"size":2483,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974727.2090142,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36058","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2663"]}},"bytes_read":2663,"user_id":"","duration":24.361394721,"size":2483,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974727.2156017,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57612","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["2757"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2757,"user_id":"","duration":34.364026862,"size":2483,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974727.2422497,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57622","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2770"]}},"bytes_read":2770,"user_id":"","duration":34.390666878,"size":2483,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974727.2719853,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57646","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2760"]}},"bytes_read":2760,"user_id":"","duration":34.420131149,"size":2483,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974727.3215585,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57676","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2759"]}},"bytes_read":2759,"user_id":"","duration":34.466865477,"size":2483,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974727.4526727,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57694","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2770"]}},"bytes_read":2770,"user_id":"","duration":34.597806103,"size":2483,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974733.0512958,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36928","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["2662"]}},"bytes_read":2662,"user_id":"","duration":15.821511054,"size":2330,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974733.2718902,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57716","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2768"]}},"bytes_read":2768,"user_id":"","duration":40.383625069,"size":2330,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776974735.7731364,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57720","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2520,"user_id":"","duration":37.167348995,"size":2980,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974746.6203144,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36916","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["2520"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2520,"user_id":"","duration":31.845811148,"size":2980,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974748.055239,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51774","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2664"]}},"bytes_read":2664,"user_id":"","duration":15.940172911,"size":2346,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974754.222506,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59176","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":2521,"user_id":"","duration":23.517990436,"size":2975,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974763.6796746,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47468","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2667"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2667,"user_id":"","duration":15.791608924,"size":2349,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974769.8904119,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36916","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2524"]}},"bytes_read":2524,"user_id":"","duration":23.086433228,"size":2978,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776974779.4484532,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47468","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2659"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"]}},"bytes_read":2659,"user_id":"","duration":15.681024755,"size":2343,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776974784.9780285,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37650","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Content-Length":["2516"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2516,"user_id":"","duration":22.299194233,"size":2976,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776974795.4182458,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47468","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Content-Length":["2658"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"]}},"bytes_read":2658,"user_id":"","duration":15.899507464,"size":2342,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776974802.2123396,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37188","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2515"],"Content-Type":["application/json"]}},"bytes_read":2515,"user_id":"","duration":23.428692034,"size":2975,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974811.067978,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47468","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2662"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2662,"user_id":"","duration":15.545671259,"size":2343,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974817.7893984,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34388","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"],"Connection":["keep-alive"]}},"bytes_read":2520,"user_id":"","duration":23.097362476,"size":2975,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974827.9770453,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47468","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Length":["2662"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2662,"user_id":"","duration":16.44616937,"size":2350,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974834.174956,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36148","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2519"]}},"bytes_read":2519,"user_id":"","duration":23.444691886,"size":2976,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974846.0708897,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58346","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2665"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"]}},"bytes_read":2665,"user_id":"","duration":18.412742592,"size":2348,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974851.1218128,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58340","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["2522"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2522,"user_id":"","duration":24.549871988,"size":2980,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974859.8430593,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58034","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2662"],"Connection":["keep-alive"]}},"bytes_read":2662,"user_id":"","duration":16.418332014,"size":2343,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974866.5661666,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58020","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["2519"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2519,"user_id":"","duration":23.903587161,"size":2970,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974876.8899527,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33886","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2666"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2666,"user_id":"","duration":17.088658065,"size":2346,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776974882.7361374,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33882","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2523"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2523,"user_id":"","duration":23.972646003,"size":2982,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974891.8308647,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38668","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Length":["2664"]}},"bytes_read":2664,"user_id":"","duration":16.195328629,"size":2343,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776974898.029526,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38666","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"],"Connection":["keep-alive"]}},"bytes_read":2521,"user_id":"","duration":23.412668901,"size":2980,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776974908.9377863,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44058","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2665"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2665,"user_id":"","duration":17.43315933,"size":2351,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974915.2449756,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60600","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2522"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2522,"user_id":"","duration":24.527724041,"size":2981,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776974924.9118524,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39084","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"User-Agent":["node"],"Content-Length":["2661"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":2661,"user_id":"","duration":17.292369287,"size":2343,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974930.1062276,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39068","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2518"]}},"bytes_read":2518,"user_id":"","duration":23.540250812,"size":2974,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776974940.5019653,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44624","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Content-Length":["2664"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2664,"user_id":"","duration":16.788602493,"size":2344,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974946.7528667,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44622","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["2521"]}},"bytes_read":2521,"user_id":"","duration":24.089749503,"size":2973,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974955.5489018,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58414","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["2663"]}},"bytes_read":2663,"user_id":"","duration":16.035463786,"size":2350,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974962.8815646,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58398","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2520,"user_id":"","duration":24.093257386,"size":2978,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974971.8311198,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33744","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2663"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2663,"user_id":"","duration":16.47408016,"size":2349,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776974978.6572788,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"33730","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2520"]}},"bytes_read":2520,"user_id":"","duration":24.089327589,"size":2980,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974988.1345139,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"52340","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2664"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2664,"user_id":"","duration":16.463457391,"size":2343,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776974993.8531811,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57312","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2521,"user_id":"","duration":23.170440738,"size":2970,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776975004.0618415,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48562","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2664"],"Connection":["keep-alive"]}},"bytes_read":2664,"user_id":"","duration":16.588569462,"size":2348,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776975010.32994,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48556","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2521,"user_id":"","duration":23.581666784,"size":2975,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776975019.603939,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47800","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Length":["2663"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2663,"user_id":"","duration":16.244321438,"size":2345,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776975027.2525785,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47798","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["2520"]}},"bytes_read":2520,"user_id":"","duration":24.651324884,"size":2975,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975035.583694,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47800","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2663"],"Accept-Language":["*"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2663,"user_id":"","duration":15.875842631,"size":2345,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975042.1607153,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58940","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"]}},"bytes_read":2520,"user_id":"","duration":23.492429254,"size":2979,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776975052.1981256,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57202","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Length":["2664"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2664,"user_id":"","duration":16.679758465,"size":2344,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776975058.1544425,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57200","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["2521"]}},"bytes_read":2521,"user_id":"","duration":23.354748224,"size":2978,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975067.7675676,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39928","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2661"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2661,"user_id":"","duration":16.434591666,"size":2348,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975074.7276444,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60908","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["2520"]}},"bytes_read":2520,"user_id":"","duration":24.100664907,"size":2975,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975083.9575388,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"44000","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2664"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":2664,"user_id":"","duration":16.43564557,"size":2353,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975090.6287122,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43984","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["2521"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2521,"user_id":"","duration":23.855531959,"size":2977,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975101.0303667,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53372","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Length":["2665"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"User-Agent":["node"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2665,"user_id":"","duration":17.667506911,"size":2341,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975108.798402,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"53370","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Content-Length":["2522"],"User-Agent":["node"]}},"bytes_read":2522,"user_id":"","duration":26.191279944,"size":2967,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975125.1691983,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38378","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2660"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2660,"user_id":"","duration":25.434756099,"size":2341,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776975127.7827563,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38372","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2517"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":2517,"user_id":"","duration":29.037307484,"size":2972,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975135.929211,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57498","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2658"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2658,"user_id":"","duration":20.338369323,"size":2343,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975143.2504067,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57492","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2515"]}},"bytes_read":2515,"user_id":"","duration":28.407671457,"size":2974,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975157.0307775,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57070","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2662"]}},"bytes_read":2662,"user_id":"","duration":25.615303449,"size":2348,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776975159.3614898,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38372","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2523"],"Connection":["keep-alive"]}},"bytes_read":2523,"user_id":"","duration":28.731922174,"size":2980,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975172.701008,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37636","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2666"]}},"bytes_read":2666,"user_id":"","duration":25.160370844,"size":2347,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975179.5756042,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57492","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2523"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"]}},"bytes_read":2523,"user_id":"","duration":33.03012208,"size":2978,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975187.080909,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"39106","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Content-Length":["2667"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2667,"user_id":"","duration":23.646588528,"size":2346,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975194.6941435,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38372","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["2524"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2524,"user_id":"","duration":32.069810837,"size":2973,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776975200.5481575,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"57492","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2666"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":2666,"user_id":"","duration":20.782305108,"size":2346,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975211.0864158,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35674","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2523"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":2523,"user_id":"","duration":32.36185736,"size":2980,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776975219.2544289,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51320","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2666"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"]}},"bytes_read":2666,"user_id":"","duration":23.703378581,"size":2347,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975226.374405,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38372","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2523"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2523,"user_id":"","duration":31.582208138,"size":2978,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975237.871545,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"35674","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["2663"]}},"bytes_read":2663,"user_id":"","duration":26.134731626,"size":2346,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975242.8371248,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58548","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2520"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2520,"user_id":"","duration":32.194461406,"size":2970,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975249.8460753,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"59348","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2667"],"Connection":["keep-alive"],"Accept-Language":["*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2667,"user_id":"","duration":22.320867891,"size":2342,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975260.8088822,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"38372","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2524"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"]}},"bytes_read":2524,"user_id":"","duration":34.017840795,"size":2974,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975266.4406035,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"58548","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2664"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":2664,"user_id":"","duration":22.950760815,"size":2339,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975275.3716826,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"45140","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2521"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2521,"user_id":"","duration":32.687393689,"size":2974,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776975283.5294654,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37344","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2664"],"Content-Type":["application/json"]}},"bytes_read":2664,"user_id":"","duration":24.16087889,"size":2348,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975292.7336335,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37330","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["2521"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":2521,"user_id":"","duration":34.151078873,"size":2976,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776975310.0883276,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36142","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2662"],"Connection":["keep-alive"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Type":["application/json"]}},"bytes_read":2662,"user_id":"","duration":34.492129334,"size":2342,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975310.9712007,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"36126","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2519"]}},"bytes_read":2519,"user_id":"","duration":36.402506283,"size":2968,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975311.5988207,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"60900","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2666"],"Connection":["keep-alive"],"Accept-Language":["*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Type":["application/json"]}},"bytes_read":2666,"user_id":"","duration":19.634153053,"size":2354,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975321.8405356,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"42618","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2530"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"Connection":["keep-alive"]}},"bytes_read":2530,"user_id":"","duration":30.74283076,"size":2982,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975328.5034695,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40624","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2662"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2662,"user_id":"","duration":20.721059492,"size":2348,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776975335.9312718,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40622","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Length":["2519"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2519,"user_id":"","duration":28.229089692,"size":2981,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975344.8318698,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48458","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2660"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"]}},"bytes_read":2660,"user_id":"","duration":21.067129307,"size":2344,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975352.2622678,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48464","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"User-Agent":["node"],"Content-Length":["2517"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2517,"user_id":"","duration":28.399420665,"size":2974,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975364.0485501,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40428","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2663"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2663,"user_id":"","duration":24.289698165,"size":2343,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975368.4170995,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40622","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["2520"]}},"bytes_read":2520,"user_id":"","duration":28.647550697,"size":2981,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776975380.6501477,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"47468","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2663"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2663,"user_id":"","duration":25.058345158,"size":2351,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776975383.5527892,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48464","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2520"]}},"bytes_read":2520,"user_id":"","duration":27.941005084,"size":2978,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975391.881358,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"43262","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2666"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2666,"user_id":"","duration":20.158537785,"size":2348,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975399.081015,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40622","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2523"],"Connection":["keep-alive"],"Accept":["*/*"]}},"bytes_read":2523,"user_id":"","duration":27.36372367,"size":2981,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776975408.461038,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37250","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2664"],"Content-Type":["application/json"],"Accept-Language":["*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Connection":["keep-alive"]}},"bytes_read":2664,"user_id":"","duration":20.624870139,"size":2345,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776975416.2905672,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37236","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["2521"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":2521,"user_id":"","duration":28.43520251,"size":2978,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776975425.3862402,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40810","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["2660"]}},"bytes_read":2660,"user_id":"","duration":21.724672826,"size":2342,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975434.849226,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40812","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Content-Length":["2517"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2517,"user_id":"","duration":31.174097456,"size":2974,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} -{"level":"info","ts":1776975441.0178423,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37236","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Length":["2667"],"Connection":["keep-alive"]}},"bytes_read":2667,"user_id":"","duration":21.259456256,"size":2345,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975448.9167347,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34530","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2524"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":2524,"user_id":"","duration":29.093297674,"size":2981,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776975459.8474832,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"54128","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Length":["2664"]}},"bytes_read":2664,"user_id":"","duration":24.229471215,"size":2350,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776975463.9600294,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40812","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2521"],"Accept-Language":["*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":2521,"user_id":"","duration":28.32894213,"size":2974,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} -{"level":"info","ts":1776975475.1554294,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"34530","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Content-Type":["application/json"],"Content-Length":["2660"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":2660,"user_id":"","duration":23.433480737,"size":2346,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} -{"level":"info","ts":1776975478.9442873,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"51992","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["2517"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":2517,"user_id":"","duration":27.220190174,"size":2974,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} -{"level":"info","ts":1776975488.258285,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"37296","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2667"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":2667,"user_id":"","duration":20.51699784,"size":2349,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776975500.6998932,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"40812","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/telemetry","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2524"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":2524,"user_id":"","duration":32.944155678,"size":2980,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} -{"level":"info","ts":1776975504.4528275,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.13","remote_port":"48328","client_ip":"172.20.0.13","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/telemetry","headers":{"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["2662"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":2662,"user_id":"","duration":20.604287643,"size":2343,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779792204.2272332,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46058","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.334113757,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792205.3104584,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34452","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":4.190757025,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792206.0587704,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50228","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.13792519,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792206.1684964,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41534","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.245111772,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792206.7894328,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46058","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.539922697,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792207.1831317,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"55836","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":5.195484368,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792209.1657958,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"55860","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":5.03761383,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792209.5675225,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46058","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.770706001,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792210.5182586,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"46374","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.202105469,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792210.994576,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50228","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.105470851,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792211.1515768,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41534","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.263396964,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792212.4970467,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46058","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.921299882,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792212.618252,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"55836","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.42187343,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779792213.2867146,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"32994","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["3164"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3164,"user_id":"","duration":6.228864196,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792215.85962,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50228","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":2.605217479,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792216.2802308,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"55860","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":7.105170621,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792216.387375,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46058","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.165042714,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792216.5756972,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41534","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.353221991,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792216.9929047,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52526","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["3006"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3006,"user_id":"","duration":6.672387846,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792216.3687818,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"33010","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":4.851766905,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779792217.6895678,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"55836","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":6.840378767,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792217.7618477,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46058","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":1.919799303,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792218.1965213,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58688","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["650"],"Accept":["application/json"]}},"bytes_read":650,"user_id":"","duration":2.976546626,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792218.405161,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50228","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["*/*"],"Pragma":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":2.557088411,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792218.880496,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41534","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.038498206,"size":1385,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792219.7484837,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"55860","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.241770635,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792220.9193635,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35088","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":4.549248446,"size":131,"status":401,"resp_headers":{"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792221.9205287,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50228","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":2.024347761,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792221.998231,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46058","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":2.101241475,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792222.7732375,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50530","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":6.915808812,"size":1931,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792223.010438,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41534","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.114417641,"size":1385,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792224.217686,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35098","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.296998873,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792224.4938903,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58704","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["3006"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3006,"user_id":"","duration":6.029696627,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792225.2366328,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42470","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.335491957,"size":1931,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792226.6080441,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46058","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.582198447,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792227.036454,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42478","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["*/*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Cache-Control":["no-cache"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.007306261,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792227.8051367,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41534","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":3.78098223,"size":1385,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792228.3556843,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50036","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.854062528,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779792228.7787359,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50228","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.751084584,"size":1931,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792229.4939244,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35104","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":5.274713423,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792232.026919,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50228","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.195422598,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792232.1929336,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46058","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":2.845694685,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792232.7298677,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35348","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["606"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":606,"user_id":"","duration":3.234175215,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792233.230673,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"36760","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":4.872093357,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792233.6546385,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41534","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":4.822019396,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792235.8452387,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50228","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.798992751,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792237.198185,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42478","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&order=id:asc","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Customer-Number":[""],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":8.364123222,"size":16662,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792237.2093782,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46058","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["stable"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.522391244,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792237.6007338,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"36762","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"Connection":["keep-alive"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":4.868510789,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779792239.0192256,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41534","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.345599066,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792239.6347713,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50228","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.772336285,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792242.5249455,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46058","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.46822603,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792243.3199182,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"36042","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["2863"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2863,"user_id":"","duration":5.71652721,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792244.2395816,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41534","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Cookie":[],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":5.209701719,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792244.9200141,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50228","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.863348512,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792244.7262201,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"36050","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.262596004,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792245.3872852,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46058","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":1.861195203,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792246.4318106,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50228","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.923878213,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792247.3665836,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40672","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3158"]}},"bytes_read":3158,"user_id":"","duration":3.9730662,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792247.8042736,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41534","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":5.418307165,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"error","ts":1779792248.9331846,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53794","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":3.945224028,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792250.2978148,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40674","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["671"],"Accept":["application/json"]}},"bytes_read":671,"user_id":"","duration":2.919519982,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779792250.7900577,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46058","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":1.965129352,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792251.8397558,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50228","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.030627727,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792251.9821477,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53796","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.040977209,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792253.21542,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41534","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.402151538,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"error","ts":1779792254.50598,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40684","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":4.206959639,"size":131,"status":401,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"],"Server":["Caddy"]}} +{"level":"info","ts":1779792256.208479,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46058","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":2.093039676,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792256.2927244,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"49826","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":4.307818955,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792256.5775769,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42478","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept":["*/*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Pragma":["no-cache"]}},"bytes_read":0,"user_id":"","duration":2.446500825,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792257.273941,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50228","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.174715119,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792257.794093,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"36854","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":3.286859464,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792258.1939197,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41534","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":4.969763254,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779792261.383832,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42478","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":1.959874649,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792261.9044037,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"36862","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.108965137,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779792262.4805684,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50228","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.076076044,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792263.3146505,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41534","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":5.111376786,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792264.7317011,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"36878","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":2.825808867,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792266.8329237,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42478","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.075056721,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792267.4638984,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50228","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Gpc":["1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":2.722677254,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792268.2090049,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41534","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.885142351,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792268.606096,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"38538","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":3.871653772,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779792272.2925596,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33728","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.204054077,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792272.7481215,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"58560","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3160"]}},"bytes_read":3160,"user_id":"","duration":4.425242674,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792273.2819383,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34846","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3006"],"Accept":["application/json"]}},"bytes_read":3006,"user_id":"","duration":4.673211188,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792273.3889062,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33726","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.318273544,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792273.485904,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41534","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":5.265789871,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792274.043027,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"57552","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["674"],"Accept":["application/json"]}},"bytes_read":674,"user_id":"","duration":3.065412753,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792274.4607093,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"51250","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":2.950775142,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792275.890893,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50228","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&search=l&order=id:asc","headers":{"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Customer-Number":[""],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":8.58115341,"size":17004,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779792275.9165127,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56774","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&search=pleno&order=id:asc","headers":{"Accept":["application/json, text/plain, */*"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Customer-Number":[""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0.003746568,"size":0,"status":499,"resp_headers":{"Server":["Caddy"]}} +{"level":"info","ts":1779792276.0304103,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42478","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&search=&order=id:asc","headers":{"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Sec-Fetch-Site":["same-origin"],"Cookie":[],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Sec-Gpc":["1"],"X-Customer-Number":[""],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":0,"size":8192,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792276.1232655,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46058","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&search=%C3%A5&order=id:asc","headers":{"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"X-Customer-Number":[""],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":0,"size":8192,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792277.9240072,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"41534","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&search=ple&order=id:asc","headers":{"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Mobile":["?0"],"X-Customer-Number":[""],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":6.210291119,"size":2660,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792278.449247,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":2.039204263,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792278.5253694,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56796","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.116963466,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792278.735648,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"57556","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":4.690887519,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792279.0878973,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33728","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&search=p&order=id:asc","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Customer-Number":[""],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":0,"size":8192,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792279.4380395,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"51256","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.715465938,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792279.4471874,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33726","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&search=pl&order=id:asc","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Customer-Number":[""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0,"size":8192,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792279.8580854,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50228","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&search=plen&order=id:asc","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Gpc":["1"],"X-Customer-Number":[""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.952657895,"size":827,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792280.8086302,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56780","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.434581726,"size":1933,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792282.1635082,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"57570","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.426376133,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792282.3509305,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56790","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.943170307,"size":1385,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792283.8709278,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56780","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":3.013200283,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792283.9524786,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"51258","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["650"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":650,"user_id":"","duration":4.506154903,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792284.469196,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42076","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.758833837,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792285.4245718,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56796","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.566568723,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792286.0508888,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56790","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"]}},"bytes_read":0,"user_id":"","duration":3.691459334,"size":1385,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792286.6368246,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53758","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.471462754,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792287.8891182,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56780","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.997334931,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792288.9104176,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&order=id:asc","headers":{"X-Customer-Number":[""],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Site":["same-origin"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":8.04899476,"size":16662,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792289.9271219,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56796","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&search=ple&order=id:asc","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Customer-Number":[""],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.495268365,"size":2660,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792290.0325174,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53764","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":3.39415786,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792290.112656,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"54752","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"]}},"bytes_read":76,"user_id":"","duration":6.157577887,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792290.1240313,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56790","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&search=plem&order=id:asc","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Customer-Number":[""],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.063209998,"size":153,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792292.2754452,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56780","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&search=plemn&order=id:asc","headers":{"X-Customer-Number":[""],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":4.377033643,"size":154,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792292.6990707,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&search=pl&order=id:asc","headers":{"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Port":["80"],"X-Customer-Number":[""],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":7.720246133,"size":15622,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779792293.1171663,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42076","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&search=p&order=id:asc","headers":{"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Authorization":[],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Customer-Number":[""],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":8.223205733,"size":16715,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792293.9387155,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56790","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&search=pleno&order=id:asc","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Customer-Number":[""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":3.807108108,"size":549,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792294.848799,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":5.929414612,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792294.8930597,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"54758","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":4.858170924,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792295.4784222,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"]}},"bytes_read":0,"user_id":"","duration":2.772936097,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792295.7952676,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56796","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&search=plen&order=id:asc","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"],"X-Customer-Number":[""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":5.860048856,"size":827,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792296.8444874,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56780","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&search=ple&order=id:asc","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Customer-Number":[""],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.56042181,"size":2660,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779792297.821302,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56790","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.875067839,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792298.5939262,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42076","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&search=plem&order=id:asc","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Cookie":[],"X-Customer-Number":[""],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.468959792,"size":153,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792298.857844,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"44036","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2863"],"Accept":["application/json"]}},"bytes_read":2863,"user_id":"","duration":3.961653525,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792299.3302703,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.844644929,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792299.4543324,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56796","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customer/attributes?user_id=1952","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.280477543,"size":451,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792299.6974504,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":4.835590421,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779792301.2166626,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56780","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/su/intimidate","headers":{"Authorization":[],"X-Forwarded-Server":["06ef1c445ff3"],"Content-Type":["application/json"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"Origin":["http://localhost:5173"],"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Content-Length":["16"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":16,"user_id":"","duration":3.243130738,"size":124,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number, X-Release-Trace, X-Release-Channel, X-Frontend-Version, Cache-Control, Pragma, *"],"Access-Control-Allow-Methods":["GET, POST, PUT, PATCH, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["http://localhost:5173"],"Access-Control-Allow-Credentials":["true"]}} +{"level":"info","ts":1779792301.498719,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56790","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":3.661455082,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792302.0937355,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"44048","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.227456522,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792302.1292942,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.791484937,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792303.510161,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.663245092,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792303.694135,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56790","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.483940992,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792303.9084227,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54362","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3140"]}},"bytes_read":3140,"user_id":"","duration":4.786906946,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792304.7572696,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.572976786,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792304.9912064,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"45210","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.497199088,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792305.6283662,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56796","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/login/qr?token=86c34a1a2cec009fe9859c158cf6c9fb127d7438fef2f33d8642d351f9cce54e"]}},"bytes_read":0,"user_id":"","duration":2.794099596,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792305.6288471,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.035417215,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792305.7224693,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42076","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/reCAPTCHA/public","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.55134067,"size":213,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792306.0835876,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56780","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/login/qr?token=86c34a1a2cec009fe9859c158cf6c9fb127d7438fef2f33d8642d351f9cce54e"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.249945236,"size":111,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792306.3017044,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57036","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.689235713,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792307.546126,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Authorization":[],"Referer":["http://localhost:5173/redirect"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":3.953184481,"size":971,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"error","ts":1779792307.9514704,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"45226","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":2.952456236,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792308.2752123,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":4.745117546,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779792309.4040368,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57036","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Cache-Control":["no-cache"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Forwarded-Port":["80"],"Accept":["*/*"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/customers"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":1.955752242,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792309.5425704,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54366","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":5.626295849,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792310.532462,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"]}},"bytes_read":0,"user_id":"","duration":3.084058799,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792311.2121105,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.762965051,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792311.5906558,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":7.988710637,"size":1632,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779792311.8982468,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.00798261,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792312.6804998,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"57276","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["76"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":4.726486171,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792313.5282943,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":5.241433768,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792314.3831086,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42906","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":4.83921945,"size":131,"status":401,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["401 Unauthorized"]}} +{"level":"info","ts":1779792314.431739,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.618566854,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792316.472793,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Referer":["http://localhost:5173/redirect"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":2.272828586,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792316.956146,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":5.167915945,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792317.0801945,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42922","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":2.695008538,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792319.832512,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":2.701103709,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792319.8826997,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":6.341976812,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779792320.3005424,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Authorization":[],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":3.190355888,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792321.090358,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42924","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":4.008742824,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792322.4555213,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.90899788,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792324.2728667,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"51700","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["604"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":604,"user_id":"","duration":3.180911295,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779792324.9059334,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":2.432472815,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792325.9585402,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.519316085,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792326.718345,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.424113872,"size":739,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779792326.795359,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/customers"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":6.900100023,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779792327.4642916,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":2.60132526,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792329.166942,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"51194","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3163"]}},"bytes_read":3163,"user_id":"","duration":4.456102463,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779792329.2567642,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"45982","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":4.981285261,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792329.7943444,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":1.988794478,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792329.086862,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.099556598,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792330.2252126,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"33042","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":2.834294678,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792330.4002028,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.380221649,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792331.243833,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":2.848137095,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792331.7449677,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43420","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["3006"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3006,"user_id":"","duration":4.271709043,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779792333.3851266,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":2.063116462,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792334.7612677,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":3.460321498,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792334.7888,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"33046","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":4.561314466,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792335.0751805,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43424","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.321851133,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792335.2994585,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Authorization":[],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.144404086,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792335.6969554,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.285500122,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792336.772509,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":3.065032972,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"error","ts":1779792339.499265,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"33048","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":4.709119209,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779792339.7112477,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Accept":["*/*"],"Cookie":[],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":2.138323734,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792339.9121556,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43428","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.575584665,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792340.8165078,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.244827965,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792341.1947577,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":5.484224008,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792341.818012,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.79351931,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792342.5166464,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":4.94165912,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792343.098172,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43824","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.176812029,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792345.1402838,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":2.234023086,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792345.9344149,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"44704","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":6.43381097,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792346.2472372,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.342066978,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792346.5066009,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":4.709662865,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792347.3123434,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Sec-Gpc":["1"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.946788618,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792347.9610312,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":6.752837371,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"error","ts":1779792348.2632132,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"34526","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.162151894,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779792348.835913,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"44706","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":2.900089118,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779792350.1233535,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":1.865888839,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792351.2667913,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.009268365,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792352.6041582,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.882734224,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792353.598512,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"34526","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":4.760418854,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792354.3885639,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":6.415119935,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792355.7219362,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.09818982,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792356.8145251,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":3.192847906,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792358.0763898,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"44522","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["2863"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2863,"user_id":"","duration":4.475417281,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792358.1283834,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":3.048524215,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792358.6357691,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Real-Ip":["172.20.0.1"],"Accept":["application/json"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Pragma":["no-cache"]}},"bytes_read":0,"user_id":"","duration":6.130716961,"size":740,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779792358.155009,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.618179002,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779792358.8806407,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":1.807399412,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792359.1014955,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42702","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":2.880148866,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792359.968434,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":2.895963085,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792361.179745,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":2.664718876,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792363.6574304,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.492337285,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792363.9206872,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42708","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2863"],"Accept":["application/json"]}},"bytes_read":2863,"user_id":"","duration":4.55705487,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792364.089168,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35906","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3141"]}},"bytes_read":3141,"user_id":"","duration":5.820980092,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779792364.4229777,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.057400614,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792365.568073,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-Port":["80"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.202696985,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792366.1190736,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Authorization":[],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.864462718,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792366.2058747,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.398438077,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792366.8870249,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42714","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":2.958618535,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792367.1013546,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35914","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":3.002894527,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792368.951257,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":5.282529393,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779792369.6931255,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":2.021980855,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792369.6946929,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"Cache-Control":["no-cache"],"Cookie":[],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["*/*"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":2.024145442,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792371.3551126,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Cookie":[],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":3.686611265,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792371.6150417,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56018","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":4.512282286,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"]}} +{"level":"error","ts":1779792371.723365,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"60130","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":4.833792679,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792373.7283552,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":4.61486889,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792374.6766524,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56022","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":3.059897561,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792374.7077847,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.740943422,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792375.74357,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.74292256,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792376.802846,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Cache-Control":["no-cache"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.92134643,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792377.1412334,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"X-Release-Channel":["canary"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.70127876,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792378.4289124,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.430189019,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792379.2917914,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56030","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":4.613338525,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792380.1627054,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":5.441776215,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792380.7907934,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.461352616,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792381.9995902,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"]}},"bytes_read":0,"user_id":"","duration":3.549135689,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792382.5184247,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42654","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.22524199,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792382.6633177,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":2.892597376,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792385.5656767,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":1.904204514,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792385.845349,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.670787513,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792386.44315,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json"],"Authorization":[],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.906413129,"size":739,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792386.6513398,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.994673971,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792386.7080724,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"33492","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":4.186301019,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792386.04113,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.724756383,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792386.600581,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"45452","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3158"]}},"bytes_read":3158,"user_id":"","duration":4.640129109,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792389.374201,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":5.304956539,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792389.5039573,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58272","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["3006"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3006,"user_id":"","duration":4.582566194,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779792389.8600576,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37560","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["674"],"Accept":["application/json"]}},"bytes_read":674,"user_id":"","duration":3.248304697,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792390.0439703,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":2.86272548,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792391.1706316,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.991472015,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779792391.38547,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":2.752322179,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792392.4306004,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58284","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["650"],"Accept":["application/json"]}},"bytes_read":650,"user_id":"","duration":2.918086228,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792394.3437107,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":1.847032281,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792394.461136,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.076248174,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792395.4352252,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.939196473,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792395.7208252,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37574","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["164"],"Accept":["application/json"]}},"bytes_read":164,"user_id":"","duration":5.859547394,"size":131,"status":401,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792395.8285835,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":4.440994695,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792396.8335464,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.902074938,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792397.4270215,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58292","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.733995392,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792398.8298564,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53436","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["619"],"Accept":["application/json"]}},"bytes_read":619,"user_id":"","duration":3.107760628,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792399.978388,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":5.505719377,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779792400.0382407,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cache-Control":["no-cache"],"Accept":["*/*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Pragma":["no-cache"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Cookie":[],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.224563962,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792401.3016522,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38716","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["650"],"Accept":["application/json"]}},"bytes_read":650,"user_id":"","duration":3.866774969,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792401.73575,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.46067148,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792403.2315419,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53452","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.400269296,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792405.9354887,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53458","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":2.702506289,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779792406.1204798,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"44882","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":4.815005119,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792406.2595866,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Authorization":[],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Pragma":["no-cache"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.232364099,"size":739,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779792407.717332,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"X-Forwarded-Host":["localhost"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/redirect"]}},"bytes_read":0,"user_id":"","duration":3.098509339,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792410.3195813,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"37740","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":76,"user_id":"","duration":4.381288073,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792412.54354,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/redirect"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":2.538892385,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792414.7427154,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"47984","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["2863"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2863,"user_id":"","duration":4.420663577,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779792415.3231,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.444946617,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792415.6536822,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":2.218009107,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792415.6894917,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35036","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["653"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":653,"user_id":"","duration":2.812005976,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792420.4059803,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35044","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.455400188,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792420.8410857,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"59836","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3157"]}},"bytes_read":3157,"user_id":"","duration":4.568576776,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779792421.8556497,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":3.118297179,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792423.8755012,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"59840","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":3.025317623,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792424.049928,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.080161478,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792424.550318,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35054","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["653"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":653,"user_id":"","duration":4.13561108,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792425.133384,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.165876128,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792425.8530464,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":4.365193193,"size":740,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792426.430961,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":2.397179379,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792428.17648,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53238","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":4.299237244,"size":131,"status":401,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792429.0500395,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":7.081405477,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792429.0556846,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Proto":["http"],"Cache-Control":["no-cache"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.095463972,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792430.124948,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":3.202822862,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792430.9208415,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.968767746,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792431.0788326,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53254","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":2.901108295,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779792431.1748767,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"45968","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.622200051,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779792431.4245937,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Cache-Control":["no-cache"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.40836561,"size":740,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792432.2340608,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":2.884105018,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792434.2993784,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.010602756,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792434.6295314,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.566545349,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792435.3690653,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.09755894,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792435.8101757,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53262","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.73005924,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779792437.157642,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Channel":["canary"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":2.476790756,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792438.163439,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":6.038986861,"size":740,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"error","ts":1779792438.8471296,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"37332","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.035775013,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792439.742533,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":2.126262561,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792440.6895196,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":4.710501687,"size":740,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792440.8316638,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.239106195,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792441.210584,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Host":["localhost"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":6.571066108,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779792442.530061,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.517280171,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792442.1014287,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"46664","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":5.034331751,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779792443.5950043,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.436043906,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792444.6420906,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.204931587,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792445.4299326,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Accept":["application/json"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.433227843,"size":740,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792445.9124408,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.768082825,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792446.4395983,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38104","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.335333008,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779792446.4783852,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.337436221,"size":740,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792446.526198,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Port":["80"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":2.984890239,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792447.0445457,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54030","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3161"]}},"bytes_read":3161,"user_id":"","duration":5.626690574,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792448.729077,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38120","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":2.280811148,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792448.9564874,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":2.482679002,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792449.3795254,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.922748029,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792449.9849782,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54044","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":2.928858532,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792450.3474908,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":5.69522573,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792452.7163167,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":3.868751251,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792454.4001153,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"38574","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":4.413213631,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792454.6806278,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38130","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":5.688207143,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792455.3531914,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.58648714,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792455.84264,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.484233659,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779792456.1112862,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.319986887,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792456.1131535,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Cache-Control":["no-cache"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":4.510918203,"size":740,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792456.7688503,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":2.587602642,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792457.5826187,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34320","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":2.89439893,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792458.850685,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"38584","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["619"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":619,"user_id":"","duration":4.449299935,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779792459.1790257,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.068552219,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792459.9316704,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/superuser/customers"]}},"bytes_read":0,"user_id":"","duration":2.797665571,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792460.288857,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.190199794,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792461.4988344,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.645617217,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779792462.3890269,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":2.868641882,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792462.7753084,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"53774","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.189775553,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792463.7341762,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"38586","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.881716877,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792465.2284825,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.745300523,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792467.0433288,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.7266869,"size":740,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792467.4040213,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.891529304,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792467.4875531,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.590521362,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792468.1099434,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":5.643696685,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792468.1915288,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"38374","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":4.455443368,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792470.7109964,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.841059032,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792470.065333,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":3.813621676,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792471.2245796,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"42048","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":4.904188115,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792471.2368991,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.696633433,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792471.2484727,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Referer":["http://localhost:5173/redirect"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.9001765,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792473.8878436,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":2.615377911,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792474.4188633,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":3.174692094,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792475.251177,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"39184","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.024365222,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792475.3687615,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Pragma":["no-cache"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.27327992,"size":740,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779792476.555459,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Authorization":[],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":5.308919425,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792476.698199,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":3.047880786,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792477.6281884,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"51022","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3140"]}},"bytes_read":3140,"user_id":"","duration":4.886409941,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792477.6851568,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&search=&order=id:asc","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Customer-Number":[""],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":8.761428204,"size":16661,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792478.5423312,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":1.975981404,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792478.796926,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"39196","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["653"],"Accept":["application/json"]}},"bytes_read":653,"user_id":"","duration":3.538468753,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779792480.0668218,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.52830797,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792480.8931258,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"51024","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":3.257109541,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792481.192985,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57028","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":4.622126106,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792481.691591,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.740829807,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792483.6989489,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37318","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.641590718,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792484.323407,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.364223846,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792484.354513,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["*/*"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.387369784,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792485.203746,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":3.245487492,"size":1385,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779792485.710213,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42092","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/reCAPTCHA/public","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":4.238096279,"size":213,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792485.8808842,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"36082","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":4.985537803,"size":131,"status":401,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["401 Unauthorized"]}} +{"level":"info","ts":1779792486.7209136,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39234","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":4.749421232,"size":1932,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779792486.8868492,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39248","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Port":["80"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"X-Release-Channel":["canary"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":2.622759292,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792487.7037337,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"]}},"bytes_read":0,"user_id":"","duration":5.985476495,"size":740,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792488.39012,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37332","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":4.683212458,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792489.1658175,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"36088","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":3.283132029,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792490.0090218,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/superuser"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":2.724768082,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792490.754696,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":3.965413969,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792490.9096382,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways?view=summary","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":4.006209932,"size":2246,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792492.3504357,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39234","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.562136392,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792492.4488702,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":2.853170276,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792493.5905697,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"49324","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.197104478,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792493.8668764,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"33754","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.699672475,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792495.0165677,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.240913259,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792495.5253448,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser"],"Sec-Gpc":["1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.908718603,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792496.4987767,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/superuser"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.561809439,"size":1385,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779792496.9585752,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39234","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Accept":["application/json"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":4.606223134,"size":740,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"error","ts":1779792497.1206315,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"33766","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.252410495,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792497.3453138,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47462","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":2.424248241,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792497.7696471,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.392252159,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779792499.2564523,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/superuser/releases/timeline?limit=100","headers":{"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.232095206,"size":4104,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779792499.385741,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/superuser/releases/timeline/sessions?limit=100","headers":{"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":5.732842527,"size":5204,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792500.072144,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":5.34939081,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792500.3323383,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"49324","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":4.994810332,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792501.2850318,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en;q=0.9"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.828044161,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792501.698142,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.702997052,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779792501.937903,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.459271683,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792503.9833646,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.891683541,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792504.6360395,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.690399181,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792505.0140533,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"36604","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.678492295,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779792506.0315692,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47462","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Cache-Control":["no-cache"],"Pragma":["no-cache"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.806561039,"size":740,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779792506.3233905,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/redirect"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.548690061,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792507.0416927,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.329159578,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792507.5450075,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":3.544942834,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792508.004696,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"36612","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":2.982845349,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792509.6302304,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37282","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["3160"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3160,"user_id":"","duration":5.800966526,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792510.6455836,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.860835909,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792511.2273738,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.665342872,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792511.9183123,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47462","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Channel":["canary"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.835367695,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792512.4527013,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Authorization":[],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":5.398763617,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779792512.8492122,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42082","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.582310355,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792512.8697445,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"57964","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":3.226204801,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792513.6270173,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39248","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/superuser/system/status","headers":{"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":28.508623157,"size":9084,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792515.0991423,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":2.123083563,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792515.4443827,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42090","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":2.5871381,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792516.020427,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.047083323,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792516.6459694,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":4.7854468,"size":740,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792516.8442285,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"57978","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":3.97320223,"size":131,"status":401,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["401 Unauthorized"]}} +{"level":"info","ts":1779792517.0583155,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39248","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.628654336,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792517.1642427,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47462","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.18974813,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792517.8865156,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.911329679,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792518.5928822,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/superuser/releases","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":24.845109373,"size":35042,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792520.3839688,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39248","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Gpc":["1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.042942372,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792520.759563,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"60982","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":5.312274566,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792521.4283834,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"58290","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["619"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":619,"user_id":"","duration":4.582526015,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792521.545934,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.205927473,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792522.928649,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/superuser/releases/github/branches?repository=copenhagentruckwash%2Fapi","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":4.18145661,"size":425,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792522.947681,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/superuser/releases/config","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":4.199929513,"size":481,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792523.1031554,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/superuser/releases/github/branches?repository=copenhagentruckwash%2Fpleno-vue","headers":{"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":4.356569513,"size":687,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792523.3639174,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47462","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.023731676,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792524.1757658,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":4.367877157,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792526.0727293,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"58294","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.642848784,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792526.2193387,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.512013978,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792526.7986767,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47462","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":3.09480481,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792527.2317898,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Gpc":["1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.636399918,"size":740,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792527.7627463,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/superuser/releases/github/repositories","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.74340848,"size":693,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792526.3000355,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":3.022944329,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792526.5184977,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.68979405,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792527.646864,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"58298","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["606"],"Accept":["application/json"]}},"bytes_read":606,"user_id":"","duration":3.448946448,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779792529.1962564,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.066630334,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792530.5468764,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":3.420686544,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792531.89713,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.769882799,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792532.6837332,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"47522","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Content-Length":["76"],"Content-Type":["application/json"]}},"bytes_read":76,"user_id":"","duration":5.033890967,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792532.9511576,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.383501719,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792533.5704803,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47462","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":1.994605288,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792535.2225897,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.662285669,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792535.4396653,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52228","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3141"],"Accept":["application/json"]}},"bytes_read":3141,"user_id":"","duration":4.838740641,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792535.738433,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Authorization":[],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.423710265,"size":740,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792536.9951437,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47462","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Proto":["http"],"Sec-Gpc":["1"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.129312716,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792537.7860641,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"60132","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["2863"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2863,"user_id":"","duration":5.099279056,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792537.8291304,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":5.919708886,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792538.8125482,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41384","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":3.364729593,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792538.8936832,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.019525237,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792539.975629,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":3.113243875,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792540.6511421,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"39268","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":2.857625343,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792541.9976065,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.83084798,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792542.9662836,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"Authorization":[],"Sec-Gpc":["1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.124948817,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"error","ts":1779792543.448016,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41386","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":4.633981082,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792544.13646,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47462","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":1.940075688,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792544.5716505,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Cookie":[],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"]}},"bytes_read":0,"user_id":"","duration":2.358991962,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792545.403535,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.220957277,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792546.039988,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Pragma":["no-cache"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cache-Control":["no-cache"]}},"bytes_read":0,"user_id":"","duration":4.103334611,"size":739,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792546.6822844,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41394","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["617"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":617,"user_id":"","duration":3.232885422,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792546.6840572,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"39284","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":5.768952231,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792547.483886,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47462","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":2.982232039,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792548.4125583,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.433826761,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792549.075964,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42762","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":2.384842955,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779792549.5422366,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.011640804,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792550.5561824,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"49586","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":3.872361815,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792550.6518257,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47462","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":3.137280048,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792552.778724,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":2.940400806,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792553.8964853,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"49602","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.33850999,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779792553.9279094,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.503657635,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792554.1520936,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"53878","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":5.073621393,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792555.7894123,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.062819582,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792555.1472025,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.211442872,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792555.7017941,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47462","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept":["application/json"],"Pragma":["no-cache"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":4.883438887,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792556.1445613,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["canary"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.765916822,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792557.1774678,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"53892","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":5.068220093,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779792559.2767375,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":7.128041544,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779792559.3665364,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47462","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.132229486,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792561.2744403,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42598","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3006"],"Accept":["application/json"]}},"bytes_read":3006,"user_id":"","duration":4.093926884,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792561.3959272,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":2.705452061,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792562.5662522,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Cookie":[],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":5.332738705,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792564.3759165,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42608","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.092596256,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792564.847648,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":5.554725264,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792565.2717478,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47462","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.730489754,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792566.086549,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.653046487,"size":739,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792566.4148033,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.828787013,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792566.8612454,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.849693948,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792568.9497077,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"58884","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3160"],"Accept":["application/json"]}},"bytes_read":3160,"user_id":"","duration":4.558097749,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792569.1631114,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"45058","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.522339536,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792569.876432,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":1.995400894,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792570.383947,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Gpc":["1"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":5.517371085,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792571.0055773,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.124613421,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792572.0286567,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"58888","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":3.067684049,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779792572.210312,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/redirect"]}},"bytes_read":0,"user_id":"","duration":2.866821232,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792572.2288327,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"45072","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["650"],"Accept":["application/json"]}},"bytes_read":650,"user_id":"","duration":3.056940491,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792575.2597206,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47462","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Port":["80"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":2.008868078,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792575.2618446,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Sec-Fetch-Site":["same-origin"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":2.01288641,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792576.2201867,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.819483478,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779792576.453534,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"58894","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":4.423455964,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792576.58381,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Pragma":["no-cache"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/redirect"]}},"bytes_read":0,"user_id":"","duration":4.461681529,"size":740,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779792577.0356455,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"48232","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":4.802706317,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792577.2712314,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":2.563975393,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792578.5023766,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":5.253646853,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792579.471442,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"56800","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["619"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":619,"user_id":"","duration":3.016025783,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779792580.894283,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.718650901,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792581.71186,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":5.4799993,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792582.199226,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.677305408,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792582.8326657,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.764907797,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792584.102957,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"56810","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.630320518,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792583.2718089,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.070778717,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792584.6807413,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Cookie":[],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":3.495867428,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792585.164795,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Authorization":[],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":4.225391729,"size":740,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792585.4443238,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.593840044,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779792586.1661482,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.671190492,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792586.9637325,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"46776","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":4.732424425,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792588.5762057,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":2.074660226,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792589.6630478,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.194053208,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792590.9708269,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.514877152,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792591.6685836,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.877011337,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792591.931015,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"45122","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":4.964690985,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779792593.585972,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42272","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3159"]}},"bytes_read":3159,"user_id":"","duration":6.394013239,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792594.8029513,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.992147883,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792595.887992,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.110258306,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792596.1368499,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":4.58762485,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792596.4579847,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":5.473724327,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779792596.8224742,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"48752","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["671"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":671,"user_id":"","duration":3.228449909,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792596.9486241,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":2.856676133,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792598.1252022,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"59128","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":6.191366792,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792599.6184373,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.507955022,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792601.1954916,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"48766","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":4.371683583,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792601.7990737,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":5.329993478,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792602.0900235,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.669726572,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792602.4172363,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":5.322452461,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792602.5658627,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"59142","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":4.428954822,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792604.549616,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42056","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":3.352405443,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792604.61139,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Pragma":["no-cache"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.149003698,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792605.8139253,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"]}},"bytes_read":0,"user_id":"","duration":3.379965984,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792606.515269,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Accept":["application/json"],"Authorization":[],"Cache-Control":["no-cache"]}},"bytes_read":0,"user_id":"","duration":4.33444248,"size":740,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779792606.5541174,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"]}},"bytes_read":0,"user_id":"","duration":4.109014884,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792607.1950321,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":5.384728066,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779792607.3495262,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.594806621,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792607.3939135,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"56672","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.562114409,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792609.102583,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42072","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.550958869,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779792609.9895089,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.211685217,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792610.0499656,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"56686","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":2.649082914,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792611.062958,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":3.300611823,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792612.119295,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42082","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.015239999,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792612.219801,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.014657531,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792611.1962423,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.902291323,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792613.5722537,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.252150004,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792614.6431317,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":3.357185552,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792614.9296186,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"36608","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":6.668983152,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792615.093518,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"54446","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":4.763785501,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792615.7242482,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.272833595,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792617.4081562,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Pragma":["no-cache"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json"],"Authorization":[],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":6.352190162,"size":740,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792617.7133863,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.111908125,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792619.3782265,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.753766114,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792619.461884,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"33838","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.36431247,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792621.3734002,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.637328899,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792621.826902,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.908822019,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792621.9185894,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":5.327498032,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792622.728666,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41510","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.258480227,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792623.9351044,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":1.99611355,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792625.4043355,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.466859526,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792625.8453686,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Authorization":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Proto":["http"],"Accept":["application/json"],"Sec-Ch-Ua-Mobile":["?0"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":4.158647613,"size":739,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792626.5496495,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":5.163573711,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792627.899076,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41512","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.906716382,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792628.0441012,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.802531542,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792629.1939857,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":1.922708496,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792630.283301,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"]}},"bytes_read":0,"user_id":"","duration":3.030294008,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792630.7817016,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41514","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":2.875072669,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792631.7101135,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.150891326,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792632.2716713,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"33656","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3162"]}},"bytes_read":3162,"user_id":"","duration":5.31608941,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792632.613643,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["canary"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Gpc":["1"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":3.013523203,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792634.6731331,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.005152888,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792634.6735365,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":2.006537419,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792635.9803474,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"34780","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":5.195377144,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792636.554822,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Authorization":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":4.152602284,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792636.5984702,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53050","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":4.315194562,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792637.2021263,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Authorization":[],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.477278296,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779792637.7374723,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.750016709,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792637.8668833,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.235800472,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792639.8905854,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"]}},"bytes_read":0,"user_id":"","duration":1.882265244,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792639.1129158,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.016563455,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792639.405419,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53056","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Content-Length":["164"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":164,"user_id":"","duration":4.68552518,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792640.5821486,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.239606183,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779792640.8462408,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.424541008,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792642.1646254,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"47082","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":2.757891027,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792643.717634,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.298512448,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792644.6784303,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.27452169,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792645.511949,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Pragma":["no-cache"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/redirect"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Cache-Control":["no-cache"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":4.35374665,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792646.0240934,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.430598865,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792646.349941,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.639480545,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792646.938099,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"47086","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.772160898,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792649.2957332,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":2.5768199,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792650.1898568,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37324","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":3.250513637,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792650.1941788,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38624","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3140"]}},"bytes_read":3140,"user_id":"","duration":4.247885081,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792650.3023453,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.599384597,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792651.016186,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":4.981948834,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779792651.57441,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["canary"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.551888794,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792653.1569536,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58474","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":2.954564731,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792653.9113593,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":1.886288642,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792655.020235,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"]}},"bytes_read":0,"user_id":"","duration":3.011478095,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792655.9511876,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"34390","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["76"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":5.759119335,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"Server":["Caddy"]}} +{"level":"info","ts":1779792656.1052198,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":4.346679304,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792656.359268,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.327842324,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792657.0575874,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Referer":["http://localhost:5173/redirect"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.727624838,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792659.0890932,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58478","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Length":["163"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":163,"user_id":"","duration":5.930706774,"size":131,"status":401,"resp_headers":{"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792659.1440578,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":1.789653334,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792660.2337132,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":2.894922705,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792661.3884683,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37326","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":5.434129797,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792661.5432875,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.173956055,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792662.0010026,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54398","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":2.910081007,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792663.899439,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":4.227767459,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792664.4709074,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"59086","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.074510995,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792664.7634652,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.064092551,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779792665.0659285,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":2.366436039,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792666.5661752,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54404","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.563659665,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792666.632056,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"]}},"bytes_read":0,"user_id":"","duration":4.196083426,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792666.8317525,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.274995188,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792668.2090607,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.542151912,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792667.0772412,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":3.86580682,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792667.4282157,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"59094","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.487737638,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779792667.4968727,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54410","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":2.723130548,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792668.974141,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":2.749622798,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792670.1279354,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.080274988,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792670.1994913,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"55044","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":2.763970043,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792671.0298336,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"]}},"bytes_read":0,"user_id":"","duration":2.50535178,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792671.310003,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":4.877484359,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792671.9636645,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"35332","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":4.46402528,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792673.5626998,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.031509188,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792674.629792,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.112623392,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792674.7743163,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"35344","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":4.572113076,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792675.2394605,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.101194495,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792675.6990912,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Forwarded-For":["172.20.0.1"],"Authorization":[],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.426942387,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792676.483098,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":2.646624775,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792676.7424345,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53802","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3006"],"Accept":["application/json"]}},"bytes_read":3006,"user_id":"","duration":4.776016029,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792680.1946683,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":3.33752808,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792680.3579378,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.109431124,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792680.417707,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35214","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.667265577,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792680.445533,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.621092528,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792681.794942,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.634938802,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792684.6455,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":2.466035624,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792685.2538733,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35226","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.574069907,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792686.3684165,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.453057242,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792687.1606297,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Cookie":[],"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":6.792904606,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779792687.3932066,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.89976732,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792687.4724545,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":5.309418524,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792688.4834425,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46444","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.222063846,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792689.6803617,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.130428904,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792691.001171,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.467061143,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792691.5600297,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37010","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3163"]}},"bytes_read":3163,"user_id":"","duration":4.759092099,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792692.3831692,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":2.491582502,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792692.4239929,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.251528121,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792694.690186,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"57298","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Type":["application/json"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.203417864,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792694.8509986,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37022","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":3.281098396,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779792694.9219074,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":1.99721624,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792695.6657212,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":2.725542433,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792695.996207,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.083256644,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792696.791515,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json"],"Authorization":[],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":4.128380202,"size":739,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779792695.5718474,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":2.232170849,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792695.7177427,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.164078775,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792697.1994855,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37032","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":4.229098574,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792698.1678371,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":1.821053626,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792699.257869,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Host":["localhost"],"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.943816325,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792700.282339,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"40624","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.081493593,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792700.7660263,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.038295767,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792702.3810737,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"]}},"bytes_read":0,"user_id":"","duration":3.749203534,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792704.1334472,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.488960153,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792704.8212397,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.21090336,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792704.9427018,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"40638","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.658541402,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792705.642523,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.259603058,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792706.2347102,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.456909472,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792706.553044,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["canary"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.61179686,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792708.0824878,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52196","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3135"]}},"bytes_read":3135,"user_id":"","duration":4.447920249,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792708.9037037,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35386","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["606"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":606,"user_id":"","duration":3.958534245,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792709.297207,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.360824144,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792710.4006681,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.480116723,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792711.0369554,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.792651968,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792711.3155944,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52198","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":3.225229313,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779792711.8517487,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":2.608526973,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792713.7603664,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"56716","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":4.852673613,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792714.75908,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Site":["same-origin"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.48125363,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792715.7844195,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":3.539045129,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792715.9859798,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52210","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":4.6684482,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792716.3901467,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.342343082,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792716.6017904,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Port":["80"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.586932548,"size":739,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792717.0289564,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.443012812,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792718.3110056,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"41878","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.547991444,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779792718.7655163,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52566","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":2.777436118,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792720.05593,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":2.457681538,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792721.149268,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.56749923,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792721.7028122,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.302628699,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792723.037423,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"41888","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["653"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":653,"user_id":"","duration":4.719246719,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779792724.2613642,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52568","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":5.485020412,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779792724.4814835,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Referer":["http://localhost:5173/redirect"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.568998318,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792724.942528,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.000220674,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792724.9431515,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["*/*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Cookie":[],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.001353231,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792724.5866494,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.471470468,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792725.253905,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Cache-Control":["no-cache"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.368475009,"size":739,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792725.5271254,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.608240933,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"error","ts":1779792725.7528322,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44214","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.283918857,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792726.1561038,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42164","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.648138125,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779792726.371724,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.919471277,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792728.5228593,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.06927162,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792728.9344368,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42180","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":2.770176694,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792729.9452486,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Cookie":[],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.510315213,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792730.488759,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"49188","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":4.733491518,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792730.925732,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":5.385392504,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792733.1514275,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.392144183,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792733.8650005,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":2.106257598,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792734.0228229,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"49198","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.085767275,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792734.9229343,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Dest":["empty"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.186432218,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792735.1855013,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44220","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.693372028,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792735.7512097,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Authorization":[],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.249643631,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792736.3757493,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.435068356,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779792737.2086315,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":3.140969183,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792738.653058,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40852","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.45782257,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792739.2208226,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/integrations?panel=coolify"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":2.128492864,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792740.4349194,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/superuser/configuration/releases/integrations?panel=coolify"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":3.362206188,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792742.2965302,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.892087825,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792743.5984983,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":7.19888619,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792743.799168,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40856","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.883885463,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792746.1560054,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.724820964,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792746.457827,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.993275554,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792746.6467872,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"57340","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":2.839164159,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792746.9063392,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"]}},"bytes_read":0,"user_id":"","duration":4.710374615,"size":739,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779792747.5556655,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.769344736,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792750.0084374,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":2.161774976,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792750.5328653,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":6.918682059,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792750.9435694,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35604","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3159"]}},"bytes_read":3159,"user_id":"","duration":4.889039352,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792751.0918574,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":3.278623512,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792751.8260133,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"39488","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":5.176046061,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792753.0394976,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":2.893400557,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792752.414757,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35612","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":3.346583966,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792754.132442,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.007278288,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792754.132869,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"],"Sec-Ch-Ua-Mobile":["?0"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.008751999,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792754.1378593,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.480194782,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779792755.8046653,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"X-Forwarded-Server":["06ef1c445ff3"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Accept":["application/json"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":4.795169104,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792755.8586617,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.736524039,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792757.6998024,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Channel":["canary"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":4.150898392,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792758.5787244,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37714","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Content-Length":["164"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":164,"user_id":"","duration":6.162343638,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792759.4858558,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.336629729,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792759.569933,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.158436478,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792760.6458242,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.234990072,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792761.5132911,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.653914929,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792761.726964,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37724","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.146885402,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792764.7468781,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.039957963,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792765.274467,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":5.770447231,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792765.8409941,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":3.134802406,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792766.0201933,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.411113117,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792766.0360277,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"43778","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":4.307616847,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779792766.3132634,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34388","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3137"]}},"bytes_read":3137,"user_id":"","duration":4.522559974,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792767.2738051,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":3.122399824,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792769.3994133,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34392","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["671"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":671,"user_id":"","duration":3.078003793,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792770.0698335,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":2.028397238,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792770.7548041,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"43792","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":4.716969176,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792770.8754544,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.588941268,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792771.2435088,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.202281503,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779792772.1405277,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.655983681,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792774.0252428,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34398","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":4.624427258,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792775.4046607,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.021815422,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792775.921644,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"47528","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.164182593,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779792776.5410795,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.160651572,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792777.0914705,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":4.837515428,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792777.5072079,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42660","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":3.479780622,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779792777.920632,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.101567383,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792778.0735958,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":7.184338744,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779792780.8167052,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"36778","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.88984052,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792780.9529428,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.252250305,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792780.2963054,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.388319782,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792780.576174,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42674","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":4.858798365,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779792781.536709,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.171263428,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792781.8170023,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.522744037,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792782.561964,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"57692","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["653"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":653,"user_id":"","duration":3.52765293,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792784.00885,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34782","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.428915115,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792784.6077259,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.380070013,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792785.672335,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.450857228,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792785.9344835,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Authorization":[],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.826747003,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792786.5712206,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["*/*"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":4.345866778,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792787.2880282,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":5.458035168,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792787.5108674,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"57700","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.686586289,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792788.1311376,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":4.453490814,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792788.9656959,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"42624","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":4.953865831,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792789.4488087,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":2.017991875,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792790.5495317,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"57712","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.030980725,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792790.6796565,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.259300237,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792791.1081743,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.128400652,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792793.0196826,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"37408","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.051670398,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792794.1956098,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":6.896852783,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792794.432007,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.419687155,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792795.5082672,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.527283567,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792796.2073395,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Pragma":["no-cache"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.457258508,"size":739,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792796.4380767,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"37424","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.409651428,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792796.7677617,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"42624","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.216024812,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779792797.121525,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":2.807884414,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792799.392591,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview?channel=internal&branch=internal"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":2.036785943,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792799.7951868,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Port":["80"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview?channel=canary&branch=canary"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":5.584564923,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779792800.4987345,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Release-Channel":["stable"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview?channel=internal&branch=internal"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.168986874,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792802.4556644,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":2.762396002,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792803.0884805,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"37438","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":6.38730078,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792805.064404,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview?channel=canary&branch=canary"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.309410821,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792805.361302,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/superuser/configuration/releases/overview?channel=canary&branch=canary"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.555412001,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792806.3547285,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview?channel=canary&branch=canary"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":3.633636278,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792806.448769,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54340","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["650"],"Accept":["application/json"]}},"bytes_read":650,"user_id":"","duration":3.351678978,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779792806.9534552,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":4.463192159,"size":739,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779792807.8525894,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":2.786550552,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792808.2789824,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview?channel=stable&branch=master"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":2.095009102,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792808.376778,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Site":["same-origin"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.47173286,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792809.2558317,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"34036","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Type":["application/json"]}},"bytes_read":76,"user_id":"","duration":4.694373421,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792809.3910356,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview?channel=stable&branch=master"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":3.224717936,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792810.045755,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview?channel=stable&branch=master"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":6.562409287,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792811.7495053,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42654","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3161"]}},"bytes_read":3161,"user_id":"","duration":4.84401546,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792813.0288594,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.554807524,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792814.259379,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview?channel=stable&branch=master"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":1.925079788,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792814.5958977,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["*/*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview?channel=stable&branch=master"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"Pragma":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.262252098,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792815.3625877,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview?channel=stable&branch=master"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Release-Channel":["stable"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.029912447,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792815.6011474,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/redirect"]}},"bytes_read":0,"user_id":"","duration":4.378864497,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792816.2675924,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42668","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["674"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":674,"user_id":"","duration":4.507678119,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779792816.6342914,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":2.868363417,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792816.7791562,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview?channel=stable&branch=master"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Authorization":[],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":6.720043829,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779792820.6741536,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview?channel=stable&branch=master"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Gpc":["1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.036818147,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792821.1320486,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"50166","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["164"],"Accept":["application/json"]}},"bytes_read":164,"user_id":"","duration":4.862747787,"size":131,"status":401,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["401 Unauthorized"]}} +{"level":"info","ts":1779792822.1165469,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.04160272,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792822.5706036,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview?channel=stable&branch=master"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":5.779966318,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792823.4304562,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview?channel=stable&branch=master"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.795626518,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792825.1163924,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview?channel=stable&branch=master"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":2.881754674,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792827.2843094,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.888480337,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792829.3287828,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"37448","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3158"],"Accept":["application/json"]}},"bytes_read":3158,"user_id":"","duration":8.023662798,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779792829.329273,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"50168","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":8.19479747,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792829.9522002,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":8.11727629,"size":740,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792830.2845252,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview?channel=stable&branch=master"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":6.836651424,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792831.0209653,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview?channel=stable&branch=master"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.589987779,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792832.8079216,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"36528","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":3.4702635,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792832.8558557,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Host":["localhost"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview?channel=stable&branch=master"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":10.271761641,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792833.3041909,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Port":["80"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.571032676,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792834.349614,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42012","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":5.018864206,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792834.6619282,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview?channel=stable&branch=master"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":4.358062756,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792834.7874796,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=2","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.433790533,"size":413,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792834.7874868,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=1","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"Authorization":[],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.433629931,"size":413,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792835.596526,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Referer":["http://localhost:5173/admin"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.24287917,"size":1385,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792837.8807456,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42028","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":5.325097599,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"error","ts":1779792837.8812962,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"36534","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":6.867447167,"size":131,"status":401,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["401 Unauthorized"]}} +{"level":"info","ts":1779792838.3549762,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46146","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=3","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":8.795432749,"size":415,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792838.3560367,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=7","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.353994909,"size":406,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792838.3561466,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=6","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.480552096,"size":414,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792838.3566322,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=5","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.354667369,"size":415,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792838.3566873,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=14","headers":{"Sec-Gpc":["1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.53556888,"size":413,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792838.3567643,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=4","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":7.287507272,"size":403,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792838.4169636,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46160","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Authorization":[],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Gpc":["1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json"]}},"bytes_read":0,"user_id":"","duration":7.717496261,"size":740,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779792838.771015,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.500966915,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792840.7285686,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53244","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":2.845746243,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792841.254871,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46160","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.202858182,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792841.7784,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=84","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.407142832,"size":414,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792842.2896254,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=12","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.916285393,"size":412,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792842.4883606,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"56780","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Sec-Fetch-Mode":["cors"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":76,"user_id":"","duration":4.604463776,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792844.6467228,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=13","headers":{"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":6.275556227,"size":409,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792846.2824588,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/outside-hours-trend?department_ids=2,1,3,4,6,5,7,14,13,84,12&date=2026-05-26&date_to=2026-05-26","headers":{"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12?departmentIds=12&dateFrom=2026-05-26&dateTo=2026-05-26"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":7.127174003,"size":394,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792846.4769742,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/weather?ids=1,2,3,4,5,6,7,12,13,14,84&date_from=2026-05-26&date_to=2026-05-26","headers":{"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Authorization":[],"Referer":["http://localhost:5173/admin/12?departmentIds=12&dateFrom=2026-05-26&dateTo=2026-05-26"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":7.431253009,"size":294,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792847.3768291,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12?departmentIds=12&dateFrom=2026-05-26&dateTo=2026-05-26"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.07657512,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792847.4048345,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57020","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12?departmentIds=12&dateFrom=2026-05-26&dateTo=2026-05-26"]}},"bytes_read":0,"user_id":"","duration":2.742412929,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792848.0045407,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46146","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Referer":["http://localhost:5173/redirect"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.105691799,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792852.422248,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42350","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2863"],"Accept":["application/json"]}},"bytes_read":2863,"user_id":"","duration":9.9231553,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792852.4222598,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53258","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":11.692025293,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792852.8500712,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46160","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":11.496104785,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792852.858978,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46146","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Channel":["canary"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":3.629836674,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792852.991002,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/bookings-count?department_id=2&date=2026-05-26","headers":{"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12?departmentIds=12&dateFrom=2026-05-26&dateTo=2026-05-26"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":5.604795742,"size":89,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792853.118301,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12?departmentIds=12&dateFrom=2026-05-26&dateTo=2026-05-26"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":6.627459234,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792853.906553,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=2&date_to=2026-05-26","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12?departmentIds=12&dateFrom=2026-05-26&dateTo=2026-05-26"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":12.118037494,"size":387,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792854.726514,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12?departmentIds=12&dateFrom=2026-05-26&dateTo=2026-05-26"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":8.431005713,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792855.0096495,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"45494","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["604"],"Accept":["application/json"]}},"bytes_read":604,"user_id":"","duration":2.584662959,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792855.0222864,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42620","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":2.590777298,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792855.968521,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37138","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/outside-hours-trend?department_ids=2,1,3,4,6,5,7,14,13,84,12&date=2026-05-26&date_to=2026-05-26","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12?departmentIds=12&dateFrom=2026-05-26&dateTo=2026-05-26"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":9.031672927,"size":394,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792857.0738666,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/bookings-count?department_id=1&date=2026-05-26","headers":{"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.947409332,"size":89,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792857.379048,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46146","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":2.78692744,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792857.8879817,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=1&date_to=2026-05-26","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/admin/12?departmentIds=12&dateFrom=2026-05-26&dateTo=2026-05-26"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":4.887752717,"size":384,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792858.4115477,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":4.495439642,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792859.9814994,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.242687382,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792860.0205142,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"51784","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.007279838,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792860.2229862,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37902","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.937398119,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792860.5414066,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37138","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=2&date_to=2026-05-26","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12?departmentIds=12&dateFrom=2026-05-26&dateTo=2026-05-26"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":4.561779967,"size":387,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792861.1148984,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":4.031369541,"size":61,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792861.4581375,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/overview?department_ids=2,1,3,4,6,5,7,14,13,84,12&date=2026-05-26&date_to=2026-05-26","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":23.084804414,"size":674,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792861.7678864,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/self-serve/enabled?id=12","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.870743303,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792862.155465,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46146","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.18030309,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792863.661178,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37912","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["653"],"Accept":["application/json"]}},"bytes_read":653,"user_id":"","duration":3.430344127,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792864.6576464,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43006","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3006"],"Accept":["application/json"]}},"bytes_read":3006,"user_id":"","duration":4.637640379,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792864.9955487,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/overview?department_ids=12&date=2026-05-26&date_to=2026-05-26","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.00388906,"size":579,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792865.0904727,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Cookie":[],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":3.313669294,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792865.4545052,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/get?id=12&date=2026-05-26","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":4.330443691,"size":154,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792865.6955495,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/get?id=12&date=2026-05-25","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.227337298,"size":154,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792864.4470625,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37138","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/weather?ids=12&date_from=2026-05-26&date_to=2026-05-26","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.788447425,"size":232,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779792865.1217349,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/outside-hours-trend?department_ids=2,1,3,4,6,5,7,14,13,84,12&date=2026-05-26&date_to=2026-05-26","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Cookie":[],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12?departmentIds=12&dateFrom=2026-05-26&dateTo=2026-05-26"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":8.592999886,"size":394,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792866.0523303,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46146","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":5.203549236,"size":739,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792866.0897853,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43462","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.315424247,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792867.0388293,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/bookings-count?department_id=3&date=2026-05-26","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":3.82970411,"size":89,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792867.661097,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46160","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":4.26712454,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792867.7943096,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=3&date_to=2026-05-26","headers":{"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.681035575,"size":386,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792868.3052745,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"51784","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept-Language":["*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":6.533702126,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792868.4699948,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=7&date_to=2026-05-26","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.898326871,"size":387,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792869.0444086,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/bookings-count?department_id=6&date=2026-05-26","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.914079585,"size":89,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779792869.1682508,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/bookings-count?department_id=7&date=2026-05-26","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["stable"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.354928806,"size":89,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792869.253866,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37138","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=6&date_to=2026-05-26","headers":{"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.79803492,"size":384,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792871.4076123,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43472","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":5.051929145,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792872.0592368,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=5&date_to=2026-05-26","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.011086905,"size":384,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792872.1567204,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/bookings-count?department_id=5&date=2026-05-26","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":4.352917466,"size":89,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792872.9749296,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/bookings-count?department_id=14&date=2026-05-26","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.921236493,"size":89,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792873.1178732,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37138","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/bookings-count?department_id=4&date=2026-05-26","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":3.85475312,"size":89,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792873.1250029,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46160","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["canary"],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":4.426890118,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792873.922363,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=4&date_to=2026-05-26","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.744495602,"size":386,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792874.1231825,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43488","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":2.707733092,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792874.881759,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":2.812926365,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792874.9276192,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=14&date_to=2026-05-26","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":6.443848968,"size":387,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792875.613063,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46146","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/redirect"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":4.165043412,"size":739,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792876.7480056,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["*/*"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.81741897,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792877.0521734,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=84&date_to=2026-05-26","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.886225928,"size":383,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792877.1274617,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/bookings-count?department_id=84&date=2026-05-26","headers":{"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":4.141366404,"size":89,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792878.3501363,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37138","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.357298886,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792878.7327833,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/bookings-count?department_id=12&date=2026-05-26","headers":{"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.840502249,"size":89,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792879.0971081,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"43550","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":4.970553517,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779792879.3771057,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46160","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=12&date_to=2026-05-26","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":6.249338878,"size":383,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792879.800866,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=13&date_to=2026-05-26","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.862349386,"size":386,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792880.011633,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.871904636,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792880.8004422,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/bookings-count?department_id=13&date=2026-05-26","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":4.042792099,"size":89,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792882.0190284,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37138","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.70564399,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792882.734926,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":3.992909125,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792883.5960379,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46160","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=1&date_to=2026-05-26","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":4.20934347,"size":384,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792884.1976748,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.175361089,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792885.1548352,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"56868","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3162"]}},"bytes_read":3162,"user_id":"","duration":4.823868446,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779792885.3873847,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":5.576661205,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792885.9788938,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":3.233254269,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792886.546458,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":5.737362659,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792887.1896734,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37138","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Authorization":[],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Pragma":["no-cache"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":5.110425675,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792887.709909,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["canary"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.059861559,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792887.8129206,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46160","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"Sec-Gpc":["1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.189605002,"size":61,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792888.1163929,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.125234016,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792888.529065,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54264","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":3.362957255,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792889.2223396,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Mobile":["?0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.225566556,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792890.1378694,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.01043442,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792891.0704367,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=3&date_to=2026-05-26","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":4.509551926,"size":386,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792891.4181647,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46160","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":3.594547428,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792892.7799637,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37138","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":2.791464176,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792893.008607,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.862283882,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792893.3610847,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/selfserve/studio/graph?department=12","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":16.299758429,"size":71814,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792893.3856251,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.253283362,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"error","ts":1779792893.4406557,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54280","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Content-Length":["164"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":164,"user_id":"","duration":4.910194972,"size":131,"status":401,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792893.0472832,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.612866988,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792893.0920494,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.806013573,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792893.9127192,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50722","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["3156"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3156,"user_id":"","duration":4.582285354,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792893.9391327,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.7188191,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792895.4979198,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46160","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=4&date_to=2026-05-26","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.85654647,"size":386,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792895.5476701,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46146","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":4.590488259,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792895.87675,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.304204569,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792896.3922548,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37138","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Channel":["canary"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":2.885434679,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792896.5468488,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54128","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":4.901800112,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792897.1661296,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":4.057311731,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792897.1710951,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41306","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":3.250104689,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792897.7967381,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Gpc":["1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":5.720004665,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792897.8839743,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46160","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":2.377413046,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792899.7090328,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"PUT","host":"localhost","uri":"/department/selfserve/studio/layout","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Content-Type":["application/json"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Content-Length":["2759"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Release-Channel":["stable"]}},"bytes_read":2759,"user_id":"","duration":5.759579797,"size":595,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["http://localhost:5173"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, PATCH, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Credentials":["true"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number, X-Release-Trace, X-Release-Channel, X-Frontend-Version, Cache-Control, Pragma, *"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779792899.7983582,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":6.735627695,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792900.122989,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=6&date_to=2026-05-26","headers":{"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.236941406,"size":384,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792900.3758786,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.200261324,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792901.0038497,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41312","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":3.831170991,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792901.0438855,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.23771622,"size":61,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792902.2782936,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37138","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":3.458778618,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792902.5125422,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54138","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":5.964409124,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792902.6368387,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.831286821,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792903.8105907,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.092364166,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792905.9298453,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"46440","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":3.41493884,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792906.0850039,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=5&date_to=2026-05-26","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.019100383,"size":384,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792906.4558241,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":6.324647475,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"error","ts":1779792906.5983944,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39136","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":5.591855589,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792906.6659126,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46146","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"Accept":["application/json"],"Cache-Control":["no-cache"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":5.085274574,"size":739,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779792906.6680377,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"Cookie":[],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":6.284565625,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792906.8236437,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept":["*/*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.00089685,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792906.8836398,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":4.230626907,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792907.1872573,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37138","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.044514285,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792908.8026495,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.709190677,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792910.2702012,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":3.804446693,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792910.781701,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=7&date_to=2026-05-26","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.10326748,"size":387,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792910.9782867,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"39018","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept":["*/*"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":5.044305828,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"error","ts":1779792911.163715,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39138","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":4.56330337,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792911.594132,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46160","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/department/selfserve/studio/simulate","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Content-Length":["336"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Authorization":[],"Content-Type":["application/json"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"]}},"bytes_read":336,"user_id":"","duration":13.70184992,"size":8034,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Access-Control-Allow-Origin":["http://localhost:5173"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, PATCH, DELETE, OPTIONS"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Credentials":["true"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number, X-Release-Trace, X-Release-Channel, X-Frontend-Version, Cache-Control, Pragma, *"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792912.2056117,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":5.31430394,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792912.321331,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.488919276,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779792912.9169142,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37138","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.424180491,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792913.459033,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Gpc":["1"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.647746147,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792913.914421,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.634219593,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792914.8753197,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38512","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.708256775,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792915.3210135,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.528504815,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792916.2725391,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"57748","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":5.29047814,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792916.4761643,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46160","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=14&date_to=2026-05-26","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":4.871292299,"size":387,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792916.9065058,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46146","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":4.619895779,"size":739,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779792917.5116322,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.179223049,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792917.5164785,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":2.184232695,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792917.5168698,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37138","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.641696049,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792917.5640683,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=0&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["image"],"Sec-Fetch-Mode":["no-cors"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.347950246,"size":1315963,"status":200,"resp_headers":{"Content-Length":["1315963"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["image/png"]}} +{"level":"info","ts":1779792918.2615314,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.337041712,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792919.2381077,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":5.766809549,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792919.6238098,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"57754","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.341554555,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792920.0164914,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"39018","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.138728296,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792920.428483,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46160","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Sec-Fetch-Dest":["empty"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.943607474,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792921.7420146,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37138","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=13&date_to=2026-05-26","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"X-Release-Channel":["stable"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":4.21873165,"size":386,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792922.1053452,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":4.578457287,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792920.9246662,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":5.239424031,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792920.9932153,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":2.678568369,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792922.199503,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.805601249,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792922.443199,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46160","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":3.895170885,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792922.6861768,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38524","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.695185506,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792923.437963,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.215443928,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792924.3625927,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58362","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":7.002608605,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779792924.5055342,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37138","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=84&date_to=2026-05-26","headers":{"Authorization":[],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":4.64300948,"size":383,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792924.7207146,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"57762","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":6.725008091,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792926.095232,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59594","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.033271147,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792926.2551792,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.400808837,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792926.255762,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46160","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":2.424323697,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792926.4064474,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":5.466208103,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792926.5865755,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50174","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.887502133,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792928.3959777,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"50776","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["653"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":653,"user_id":"","duration":3.665469183,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792932.080627,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50184","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3006"],"Accept":["application/json"]}},"bytes_read":3006,"user_id":"","duration":5.229016987,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792932.1115136,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"54302","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.142004674,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792932.3768458,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46146","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":3.511715495,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792932.5047042,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"54286","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.638434112,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792933.474499,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"43220","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":5.075326027,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"Server":["Caddy"]}} +{"level":"info","ts":1779792933.6713808,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"54288","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/release/timeline/events","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Mobile":["?0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Content-Length":["5586"],"Sec-Fetch-Dest":["empty"],"Authorization":[],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Content-Type":["application/json"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Accept":["*/*"]}},"bytes_read":5586,"user_id":"","duration":4.797774122,"size":135,"status":202,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number, X-Release-Trace, X-Release-Channel, X-Frontend-Version, Cache-Control, Pragma, *"],"Access-Control-Allow-Methods":["GET, POST, PUT, PATCH, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Status":["202 Accepted"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["http://localhost:5173"],"Access-Control-Allow-Credentials":["true"]}} +{"level":"info","ts":1779792933.7852478,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56806","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.920548856,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792934.2804615,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"46160","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":5.415787918,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} +{"level":"error","ts":1779792937.0831609,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53828","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":4.99386479,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792942.4862072,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"43220","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":5.400568098,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792948.7308462,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54580","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3161"]}},"bytes_read":3161,"user_id":"","duration":5.020123046,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792952.5836763,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"46974","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["674"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":674,"user_id":"","duration":3.841302382,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792957.0878613,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53002","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3141"]}},"bytes_read":3141,"user_id":"","duration":4.752042251,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779792957.3128183,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"46984","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["164"],"Accept":["application/json"]}},"bytes_read":164,"user_id":"","duration":4.726437469,"size":131,"status":401,"resp_headers":{"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792960.2920282,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"33094","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":3.193190731,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792960.416213,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"41458","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["619"],"Accept":["application/json"]}},"bytes_read":619,"user_id":"","duration":3.101219869,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792965.2718792,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"33100","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":4.977816362,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779792965.3751438,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"41460","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.956899795,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792972.015454,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"41468","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":6.637804252,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792972.6237125,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"33108","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":7.350155813,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779792977.4840477,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"54288","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.607806489,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792977.7647336,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["*/*"],"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":2.860356583,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792977.7651718,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50140","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.546029361,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792977.003426,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50112","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.677611373,"size":1385,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792977.0254304,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Authorization":[],"Referer":["http://localhost:5173/redirect"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":4.039573031,"size":971,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792977.482874,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38794","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":6.739284238,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792977.7890897,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"47968","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":7.657510146,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792977.7944312,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57842","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Cookie":[],"Pragma":["no-cache"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"Accept":["*/*"],"Cache-Control":["no-cache"]}},"bytes_read":0,"user_id":"","duration":2.168090013,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779792978.651247,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50126","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"Accept":["*/*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Pragma":["no-cache"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.322622133,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792978.6873717,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50108","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Cookie":[],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.437995784,"size":1930,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792978.824432,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57818","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.205377736,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792978.9818516,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.966690167,"size":1633,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779792979.879686,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Cache-Control":["no-cache"],"Cookie":[],"Pragma":["no-cache"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":2.161118113,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792979.9832819,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"54288","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":4.365073212,"size":1385,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792980.3035712,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46432","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":2.818648923,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792980.4368834,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57834","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":4.810890331,"size":1931,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779792980.9745977,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.261120303,"size":1385,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792982.0347862,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":4.309399343,"size":1931,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792983.9313693,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":6.216845459,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792985.6202059,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":7.343814727,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792986.506996,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54812","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["2863"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2863,"user_id":"","duration":8.714087176,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792987.0436575,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"47968","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":6.737049923,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792987.9831798,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Cache-Control":["no-cache"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.588981071,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792987.9972394,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":2.369618884,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792988.473335,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Cache-Control":["no-cache"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":4.046517393,"size":1385,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792989.117087,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50146","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/selfserve/studio/graph?department=12","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":0,"size":8192,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792989.4275455,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.033327223,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792989.4793718,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"45966","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":2.964661468,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792990.314389,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cache-Control":["no-cache"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.920736638,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792990.6861143,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":6.26440194,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792990.9733872,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39346","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":5.660873352,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779792990.9777238,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57854","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/selfserve/studio/graph?department=12","headers":{"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0,"size":8192,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792991.8281622,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["canary"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":2.951289035,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792992.3396022,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"]}},"bytes_read":0,"user_id":"","duration":4.329951531,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792992.6550608,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/selfserve/studio/graph?department=12","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Cookie":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":14.941416964,"size":71816,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779792992.71529,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.231580304,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792994.5534165,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept":["application/json"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":4.928413054,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779792994.6121721,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39356","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.630222231,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779792994.6195815,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"45972","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.873683611,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792994.6447625,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.318150562,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792994.9646397,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.524284167,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779792995.1278813,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":2.779330423,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792996.3225644,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.619485291,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792996.5542607,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":3.819488644,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779792997.041979,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":2.825723322,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792997.6180322,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.4809441,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779792998.278275,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.620447222,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792999.2125444,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38398","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.336638739,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779792999.2447464,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"45980","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":4.616528182,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793000.1775312,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.199269523,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793001.15726,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":2.171754395,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793001.80773,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.463865327,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793002.242762,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38408","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.021572793,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793002.2846348,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.326064499,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793002.5603726,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":3.015934854,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793002.674595,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":6.102112971,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793004.109179,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"39616","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":4.861010269,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793005.1651273,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.852977185,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793005.338419,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/department/selfserve/studio/simulate","headers":{"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Content-Length":["336"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Authorization":[],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Content-Type":["application/json"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":336,"user_id":"","duration":12.649209406,"size":8034,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number, X-Release-Trace, X-Release-Channel, X-Frontend-Version, Cache-Control, Pragma, *"],"Access-Control-Allow-Methods":["GET, POST, PUT, PATCH, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Access-Control-Allow-Origin":["http://localhost:5173"],"Vary":["Accept-Encoding"],"Access-Control-Allow-Credentials":["true"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Server":["Caddy"]}} +{"level":"info","ts":1779793005.942683,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.752048212,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793005.1616182,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.273158133,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793005.4377594,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":5.418039799,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793005.5437872,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"39620","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":5.104516706,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793005.6570587,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.147639722,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793005.855051,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":2.786175144,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793006.7858863,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":4.292778051,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793009.2748244,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":4.096136828,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793009.772914,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.622680704,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793010.7130766,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.264248098,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793011.8299167,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["*/*"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":2.546397378,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793011.8332052,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.009384332,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793011.914092,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":4.10984177,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793012.4316132,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Fetch-Dest":["empty"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.04162274,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779793013.4995863,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Authorization":[],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":4.360360976,"size":739,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793013.8218336,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.04168521,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793015.4209757,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.282509408,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793016.431256,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":5.708261486,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779793016.4870074,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":2.786773523,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793016.5124238,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.397707424,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793016.6772738,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/department/selfserve/studio/simulate","headers":{"X-Forwarded-Proto":["http"],"Content-Length":["336"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Content-Type":["application/json"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":336,"user_id":"","duration":13.127718938,"size":8034,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Origin":["http://localhost:5173"],"Access-Control-Allow-Credentials":["true"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number, X-Release-Trace, X-Release-Channel, X-Frontend-Version, Cache-Control, Pragma, *"],"Access-Control-Allow-Methods":["GET, POST, PUT, PATCH, DELETE, OPTIONS"]}} +{"level":"info","ts":1779793017.570554,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":5.731208792,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793017.797542,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.951744839,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793019.0233235,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"55750","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3161"]}},"bytes_read":3161,"user_id":"","duration":4.687889257,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793019.9306216,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=0&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["no-cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["image"],"Sec-Fetch-Site":["same-origin"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.226268261,"size":1315963,"status":200,"resp_headers":{"Content-Type":["image/png"],"Server":["Caddy"],"Content-Length":["1315963"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793020.475883,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":1.996846503,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793021.0166016,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":1.980836965,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793021.4454548,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"55766","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":2.413478125,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"error","ts":1779793021.495012,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52048","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3158"]}},"bytes_read":3158,"user_id":"","duration":3.92141754,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793021.5668354,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":3.119466338,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793021.8036213,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":5.360526731,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793022.040112,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Cookie":[],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":4.450988127,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793024.0583315,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.610654982,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793024.5444846,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52064","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["671"],"Accept":["application/json"]}},"bytes_read":671,"user_id":"","duration":3.040853552,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793025.8695755,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"55778","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":4.422790457,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793026.098701,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":2.25727175,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793026.112702,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Authorization":[],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":6.323407866,"size":740,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793027.037206,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.63248486,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793027.1991374,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":3.392149345,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793027.277689,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.460732904,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793027.4275045,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":5.372180741,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793028.0641296,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":3.983140477,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793029.2578712,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"49566","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Length":["163"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":163,"user_id":"","duration":4.711350128,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793029.6031384,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"60800","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.731836857,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793031.5860512,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":2.360066202,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779793032.050612,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"49578","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":2.791176108,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793032.3021834,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.097429146,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793032.5029657,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":3.297821401,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793032.5231807,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"]}},"bytes_read":0,"user_id":"","duration":2.722341839,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793032.7821465,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.492755766,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793033.7941198,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":6.354546062,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793033.9814117,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"60810","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":4.376307338,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793033.435932,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Frontend-Version":["a952dd2c"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cache-Control":["no-cache"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.785954105,"size":740,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793034.8013022,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"49594","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.649462947,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779793035.0113344,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"58864","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":2.928303166,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793035.4291735,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.798912779,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793035.6947079,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.08047833,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793035.8349664,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.218967381,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793036.172201,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":2.973572536,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793036.2694201,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":5.371725881,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793037.033993,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.130101936,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793038.440025,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41626","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.63719719,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"]}} +{"level":"info","ts":1779793040.8484275,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"Accept":["*/*"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":2.905188322,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793040.8696814,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.942276976,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793041.4158914,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Gpc":["1"],"X-Release-Channel":["canary"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":2.919839905,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793041.8624883,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.950477906,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793042.009013,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":4.096952725,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793042.5162199,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":6.236693358,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793042.8678977,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"39586","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":7.854084135,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779793043.166625,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":6.122533976,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779793043.7098954,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"39588","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"]}},"bytes_read":76,"user_id":"","duration":5.26698946,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793045.790931,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Accept":["application/json"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":6.537203451,"size":739,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793045.7920816,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":2.556522297,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793046.4592965,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.670777249,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793046.4606311,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.256888409,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793046.7093086,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.505321193,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793047.187541,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"58556","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.316812631,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779793047.6382122,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.458536466,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779793047.9557064,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"55386","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.509530586,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793048.0016537,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.47546789,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793050.9282253,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"55402","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":2.963746055,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793051.5749466,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"58562","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":4.379196198,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793051.6423411,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.121364724,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793051.778243,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.256862494,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793051.8931322,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":2.767533445,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793052.778062,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.129297425,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793052.9279594,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.372322632,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793053.2105863,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.197461481,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793054.4383216,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json"],"Pragma":["no-cache"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.556065461,"size":740,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779793054.6272292,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/department/selfserve/studio/simulate","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Content-Length":["337"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Content-Type":["application/json"],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":337,"user_id":"","duration":13.155388435,"size":8538,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Origin":["http://localhost:5173"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number, X-Release-Trace, X-Release-Channel, X-Frontend-Version, Cache-Control, Pragma, *"],"Access-Control-Allow-Methods":["GET, POST, PUT, PATCH, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Credentials":["true"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793056.0511398,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"59694","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.858167141,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793056.6406024,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.75005074,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793057.0100086,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.144176523,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793057.191444,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.325171551,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793057.4563584,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":3.005055637,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793057.7943769,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"50368","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["2863"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2863,"user_id":"","duration":5.955397631,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793057.8754132,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.083017475,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793058.5350783,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.312663735,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793059.4600534,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"59704","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.400029321,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793061.699754,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"50382","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.896296923,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793062.1781924,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.9554481,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793062.5317903,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.33816532,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793062.6745472,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Gpc":["1"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.48038042,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793062.0148866,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.933408985,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793062.3677769,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.625568278,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779793062.5426652,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.553155318,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793063.0577488,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"54612","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":5.398533547,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793063.7393093,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Accept":["application/json"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":4.994237633,"size":740,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793064.8465621,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"56810","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":4.946882338,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793065.3132608,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.57322358,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793065.8604214,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.148579395,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793065.9170284,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.616903779,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793065.9349868,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.221891604,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793067.1454508,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":5.119764625,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793069.1347296,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":6.755923555,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793070.0361364,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":1.973830081,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793070.0441542,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":1.991038943,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793071.66975,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":3.639618636,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793071.6908076,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":3.660650164,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793072.5484276,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Site":["same-origin"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.392073487,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793072.8466897,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.22768295,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793074.1383176,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Mode":["cors"],"Authorization":[],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":4.765814687,"size":740,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793074.7470818,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.601063541,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793075.9792075,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":2.593242855,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793076.5774395,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":3.214580425,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793076.7175336,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.352892254,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793076.8130326,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.861255179,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793077.772422,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":5.213491295,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793079.8561137,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"36724","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3160"]}},"bytes_read":3160,"user_id":"","duration":4.768316582,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793080.426883,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":5.669436886,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793081.5567164,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Release-Channel":["stable"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":2.814459073,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779793081.7558825,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"58248","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3164"],"Accept":["application/json"]}},"bytes_read":3164,"user_id":"","duration":4.884374151,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779793081.845903,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.137381275,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793081.985361,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.277351463,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793083.192121,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35880","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":3.32755089,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793083.3020315,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["canary"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.99617101,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793083.3088958,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.52216,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793085.2976084,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/department/selfserve/studio/simulate","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Port":["80"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Content-Length":["336"],"Cookie":[],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Content-Type":["application/json"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":336,"user_id":"","duration":15.249254008,"size":8034,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["http://localhost:5173"],"Access-Control-Allow-Credentials":["true"],"Access-Control-Allow-Methods":["GET, POST, PUT, PATCH, DELETE, OPTIONS"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number, X-Release-Trace, X-Release-Channel, X-Frontend-Version, Cache-Control, Pragma, *"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793085.7364893,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":5.296429983,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793086.4856033,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"39700","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["674"],"Accept":["application/json"]}},"bytes_read":674,"user_id":"","duration":4.718278445,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793086.5632863,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"X-Forwarded-Port":["80"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":6.500307934,"size":740,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793086.787129,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":2.66268351,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793087.286489,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":3.179085345,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793087.4251242,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":3.316212285,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793087.7473826,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35892","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":4.55346221,"size":131,"status":401,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["401 Unauthorized"]}} +{"level":"info","ts":1779793088.4316797,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=0&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["image"],"Sec-Fetch-Mode":["no-cors"],"X-Forwarded-For":["172.20.0.1"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.10373283,"size":1315963,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["image/png"],"Content-Length":["1315963"]}} +{"level":"info","ts":1779793089.3244407,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.618845449,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793090.4732497,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":4.717903909,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793090.5828686,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":7.261722769,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779793091.175308,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35894","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":3.426039749,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779793090.430682,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"39706","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":4.755792232,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793090.7298315,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.192133523,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793090.7845533,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.664066966,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793090.916938,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.378086016,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793091.299487,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.746156871,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793092.7852592,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"43028","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.439736058,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779793093.5078106,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Forwarded-For":["172.20.0.1"],"Authorization":[],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.640907368,"size":740,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793093.6355355,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.940910151,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793093.856963,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":5.273137314,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779793095.5789988,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.714847475,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793095.9227521,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":3.090699351,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793095.9636455,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":2.546437662,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793096.0659626,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":3.234195761,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793096.5479078,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53278","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":7.270932355,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779793096.6851227,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"43030","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":3.898183425,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793098.7981248,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.151674659,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793099.328715,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.460413148,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779793099.4363697,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53282","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["604"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":604,"user_id":"","duration":2.886958833,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779793099.5684063,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"43040","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["606"],"Accept":["application/json"]}},"bytes_read":606,"user_id":"","duration":2.881697679,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793100.2616634,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.091113746,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793100.882091,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["*/*"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.712282254,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779793101.1659758,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.44703626,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793101.3634343,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.224494757,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793103.3000267,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":4.489862432,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793103.8676345,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"]}},"bytes_read":0,"user_id":"","duration":4.397882076,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793104.0443168,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.900339397,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793104.0759604,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"44510","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":4.63710029,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793104.4025333,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"44518","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":4.829455316,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793104.6550956,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.312791903,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779793106.1233943,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.090701512,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793106.123819,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.646935463,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793107.3511543,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":3.909139554,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793107.8067625,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.742253412,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793108.020884,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43056","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":3.941806662,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793108.6812415,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Authorization":[],"Cookie":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":5.238169676,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793109.2238688,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37514","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.817908671,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779793111.6910055,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.881496207,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793112.1160731,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":7.448581421,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779793112.1497748,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.362925925,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793112.2918339,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["canary"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.913388185,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793112.3007095,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.511941063,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793112.5291848,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43718","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":4.500603183,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793112.5937946,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"56284","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.362609761,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793113.4852505,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.694760611,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793115.5074022,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Authorization":[],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":5.373847198,"size":740,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793116.692501,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":2.539742426,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793117.2145853,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.093828507,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793117.4758174,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.764916636,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793117.481204,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43728","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.688513871,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793117.6205745,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"56300","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2863"],"Accept":["application/json"]}},"bytes_read":2863,"user_id":"","duration":4.763646108,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793117.8048065,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":3.682499413,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793117.9834864,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":5.853246096,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793118.5159738,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"Cookie":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":4.393351889,"size":185,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793119.6329136,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35196","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.953175223,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793119.8691225,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"38844","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":4.050499795,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793120.288039,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":2.616967591,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793120.8717782,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.649043941,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793120.8856032,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":3.246082675,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793121.3941696,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":5.20929285,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779793122.075379,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.4350391,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793122.9664097,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.33011858,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793123.8126795,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Cache-Control":["no-cache"],"Accept":["application/json"],"Authorization":[],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":4.838238836,"size":740,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793124.705553,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"34854","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.069726462,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779793125.194322,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"34858","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Accept":["*/*"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":5.322209369,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793126.085761,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.550921175,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793126.2262824,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.243915092,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793126.4036336,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.422201941,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793127.093581,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":5.685940042,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793127.5918407,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.645138959,"size":185,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793127.6608899,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.714336671,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793130.8075163,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Proto":["http"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":2.493307481,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793130.8858016,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.572071771,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793131.532418,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.254685385,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793132.0133352,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.734684365,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793132.0674176,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":3.195194293,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793132.8586385,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.579547053,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793133.0493603,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.946772416,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793136.584492,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json"],"Referer":["http://localhost:5173/redirect"]}},"bytes_read":0,"user_id":"","duration":6.957813539,"size":740,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793136.82322,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.213068824,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793136.9493053,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.338389686,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793137.0008087,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Port":["80"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":2.790110268,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793138.0737252,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.430301537,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793138.5522203,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.49254896,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793138.6080706,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":4.995935434,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793141.5923533,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"60402","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["3142"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3142,"user_id":"","duration":4.922532949,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"Server":["Caddy"]}} +{"level":"info","ts":1779793141.761983,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":2.728939809,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793142.2381551,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":2.638285489,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793142.3818061,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.38163124,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793142.4260943,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.423424852,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793143.4955196,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"48200","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3164"]}},"bytes_read":3164,"user_id":"","duration":6.276282202,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793143.9966195,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.432843095,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793145.0520654,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.690651997,"size":739,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779793145.112301,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"60406","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":3.51104609,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793145.7811873,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":6.778517107,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793146.7854598,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"48206","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":3.279639087,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779793145.731111,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.283655896,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793145.7311301,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.685062295,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793145.8642135,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.417048009,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793146.4674637,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.987340717,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793147.2547448,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.144444112,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793147.7372105,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"60420","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":4.525832347,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793149.2418802,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.351397282,"size":185,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793149.7151551,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"57050","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":4.830073246,"size":131,"status":401,"resp_headers":{"Status":["401 Unauthorized"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793150.3174152,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40442","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":2.578571432,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793150.4756675,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.693131261,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793151.0863945,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":2.748403454,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793151.2836525,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.532373548,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793152.6019146,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.334299674,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793153.2786071,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.527411102,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793153.5586853,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.475633671,"size":740,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793154.3149905,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.059635472,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793154.6950803,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"57058","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":4.977262455,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793155.030331,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40454","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.711556333,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"Server":["Caddy"]}} +{"level":"info","ts":1779793155.6604996,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":2.578870828,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793156.4636533,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.826404302,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793156.913852,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Port":["80"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.864460419,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793158.2674572,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.650244161,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793158.5639608,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.272511832,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793159.5203724,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.193544934,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793159.8520932,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"59424","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":4.819428107,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779793160.9749384,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"40460","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":6.278288673,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793161.0807288,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.694534636,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793161.1343496,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Pragma":["no-cache"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["*/*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.731101683,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793161.886262,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Real-Ip":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":3.533080968,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793162.0470667,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":3.102274079,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793163.3815942,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.103063013,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793164.4974825,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":4.796359643,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793164.6633801,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"40462","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":3.686190061,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793164.8976235,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":5.358069761,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793164.8998153,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":6.325402372,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793164.9822474,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"52818","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.127500828,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793167.4930136,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.793054255,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793167.565926,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.835815716,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793167.983545,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Host":["localhost"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":3.073125879,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793168.3415482,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.055224408,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793168.8082435,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56434","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":3.948939329,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793168.938202,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.542803674,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793169.0906243,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"55890","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":4.424427083,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779793169.3505762,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":4.441899742,"size":185,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793171.4506633,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":2.38112966,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779793171.5080729,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56450","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":2.691998089,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793172.2049913,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":3.169273009,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793172.5402334,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.504058426,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793173.3925674,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37122","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.298773212,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793174.1260722,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.497221081,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793174.2488215,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"X-Forwarded-Host":["localhost"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.298274393,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793174.703999,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.341712121,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793175.1493273,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Pragma":["no-cache"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.761623554,"size":740,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779793174.8894536,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37126","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.301962051,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793174.9547896,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56458","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.990618316,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793175.168858,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.581090455,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793175.7718823,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":3.217495352,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793175.790626,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":2.64935749,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793176.0534098,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":3.499481711,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793177.231792,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.782968071,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793178.2221966,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38448","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["650"],"Accept":["application/json"]}},"bytes_read":650,"user_id":"","duration":3.259462104,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793182.0186963,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"44966","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["2863"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2863,"user_id":"","duration":6.86662516,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793182.165357,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":9.259001514,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793198.3233614,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":20.420164308,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793198.330401,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":20.458899403,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793198.438479,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":20.566953393,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793198.956599,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":20.494200834,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779793199.7671719,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"38476","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":17.711314271,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793199.8937025,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":22.64856045,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793199.9707124,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50100","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept":["*/*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Pragma":["no-cache"]}},"bytes_read":0,"user_id":"","duration":11.404484906,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793200.9607558,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"40538","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":22.735140503,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793200.9742918,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":2.639639197,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793201.788853,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":19.573042454,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793201.835982,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.491695807,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793201.9460852,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Authorization":[],"Cookie":[],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":3.483355303,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793202.3249986,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"44248","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Length":["76"],"Content-Type":["application/json"]}},"bytes_read":76,"user_id":"","duration":9.561944664,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793202.7013433,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"]}},"bytes_read":0,"user_id":"","duration":23.486910072,"size":739,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793203.5375738,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":4.571126028,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793203.5391614,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.553565446,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793201.9941528,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38176","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3142"]}},"bytes_read":3142,"user_id":"","duration":8.601318626,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793203.9246404,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.281686113,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793203.9254038,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":2.283858323,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793203.9567244,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.952626693,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793204.1245122,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.172236039,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793204.2284794,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":4.160701136,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793206.7516572,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.814653627,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793207.1445408,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":7.247662575,"size":185,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793207.665885,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"55520","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["671"],"Accept":["application/json"]}},"bytes_read":671,"user_id":"","duration":5.662918477,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793208.0008562,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.861803525,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793208.3273249,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":4.390280072,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793209.5050492,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.524483599,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793209.585151,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":2.824363353,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793210.0016046,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":5.750226917,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793211.1443765,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.809679867,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793211.748853,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.737040944,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793212.2484617,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"55526","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":4.581161926,"size":131,"status":401,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793212.269051,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":2.675112881,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793212.2822237,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.12426465,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793214.048655,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json"],"Pragma":["no-cache"]}},"bytes_read":0,"user_id":"","duration":4.736340834,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793214.0912108,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.937939137,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793214.151121,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":4.124893483,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793214.9065628,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":5.390257672,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793215.1348,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"48440","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":2.88471714,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779793215.6849098,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":2.371834664,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793216.7028224,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":2.60324139,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793216.7544494,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Host":["localhost"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":3.47422571,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793216.9903188,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"59208","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3156"]}},"bytes_read":3156,"user_id":"","duration":4.534462819,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793217.193238,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":4.899544499,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793217.9791648,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.809622852,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793219.3823485,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.672275456,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793219.7160277,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"48448","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.579734702,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793219.9641697,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"59224","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":2.963201205,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793220.2873642,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Authorization":[],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":5.369649048,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779793220.7468321,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept":["*/*"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":2.094123715,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793220.748947,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.094883339,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793221.8079283,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.192311422,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793221.9537168,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.337230294,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793222.1592782,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":2.768764948,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793222.4054644,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":5.202141494,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793223.3958528,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"48458","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.678103511,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793224.0977504,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Authorization":[],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":4.138240732,"size":739,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"error","ts":1779793224.706891,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"36946","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Content-Length":["164"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":164,"user_id":"","duration":4.741153769,"size":131,"status":401,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793226.2327328,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":5.933526438,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793226.355392,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.364810626,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793227.0355093,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Release-Channel":["canary"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":2.492338338,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793227.1477149,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":3.187574237,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793227.267096,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Authorization":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.306351437,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793227.5462506,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.125341363,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793227.7737908,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"36960","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.065414275,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779793229.2770393,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"52632","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":5.878434817,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793231.3799298,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.070605388,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793231.8309736,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.586972544,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793230.4417405,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"36976","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.479103578,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779793230.7517765,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":5.007692411,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793230.7733724,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.706170502,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793230.84353,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.360752008,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793231.1963084,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44814","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3006"],"Accept":["application/json"]}},"bytes_read":3006,"user_id":"","duration":4.606037959,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793232.798552,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.318124875,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793233.8274784,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"X-Forwarded-Host":["localhost"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.009374385,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793234.6132107,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43970","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.407205643,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793235.0037923,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.189176991,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793235.2669039,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37302","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":4.82355555,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793236.1114106,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":6.082151675,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779793236.2228622,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":3.42133951,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793236.3533602,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.588917155,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793237.5662727,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/redirect"],"X-Release-Channel":["canary"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.18011327,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793238.2708774,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.458069712,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793240.2513947,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.115253031,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793240.8472989,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43984","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":5.971152258,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793241.2510054,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"38472","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.981494247,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793241.481744,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.117246821,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793241.5015283,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.398151406,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793241.5217938,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":5.396199047,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793241.555225,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":2.863630052,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793241.947726,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.666284095,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793244.1135197,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.667279239,"size":739,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793245.4634795,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"45526","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["650"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":650,"user_id":"","duration":4.608148072,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793245.726082,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"55484","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.472409301,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793246.2716014,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.804211222,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793246.3452718,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":4.848865007,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793246.664803,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":5.128317816,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793246.7284446,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.293249486,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793246.8616037,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.426320486,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793247.1435454,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.119914934,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793248.922237,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"55488","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.186821215,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793250.4608614,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"38868","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":4.994460965,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793250.8314006,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":1.995830388,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793250.836764,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Mobile":["?0"],"Cookie":[],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["*/*"]}},"bytes_read":0,"user_id":"","duration":2.001895646,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779793251.5417635,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":5.185182752,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793251.8973153,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.09503399,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793252.0451627,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.242376333,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793252.1253765,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":2.727852857,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793252.1816373,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.505648033,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793253.913274,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"36076","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.728563305,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793255.6710343,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.507628079,"size":739,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779793257.2625434,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.028358007,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793257.6317499,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"36082","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.709922645,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793257.6895127,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=1&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["image"],"Sec-Fetch-Mode":["no-cors"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Port":["80"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.108940254,"size":1318636,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["image/png"],"Content-Length":["1318636"],"Server":["Caddy"]}} +{"level":"info","ts":1779793257.880322,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.086456492,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793258.5720572,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":7.018235525,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793258.8483596,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":4.649478137,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793259.3832214,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":7.187726355,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779793259.7093194,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.511516092,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793260.016845,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.382282564,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793260.8585198,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"50738","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.127375093,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779793261.2425642,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.643044097,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793261.5076063,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.69143033,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793261.7645519,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":5.075894382,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793262.5194948,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Referer":["http://localhost:5173/redirect"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":4.333562278,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793262.7271307,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Channel":["stable"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":5.234309392,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793263.4408107,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Pragma":["no-cache"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":4.507492449,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793265.022691,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=2&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"Cookie":[],"Sec-Fetch-Dest":["image"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["no-cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.278424244,"size":1344195,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Length":["1344195"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["image/png"]}} +{"level":"error","ts":1779793265.3381252,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39424","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3156"]}},"bytes_read":3156,"user_id":"","duration":4.744893618,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793265.3414629,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":2.420894778,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793266.0615015,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.166188678,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793266.130832,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.652534742,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793266.136894,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.242585748,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793267.561476,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":4.822325406,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779793267.9618344,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Cookie":[],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":6.184725863,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793268.4325209,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39434","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":3.084319253,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779793269.496284,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=3&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Fetch-Mode":["no-cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["image"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.148311908,"size":1346479,"status":200,"resp_headers":{"Content-Length":["1346479"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["image/png"]}} +{"level":"info","ts":1779793270.8790076,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.638862678,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793271.3435366,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.135666694,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793271.4802322,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.271037583,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793271.7323558,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":2.938732326,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793272.7603097,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":4.78866862,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793272.980634,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.408911699,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793273.0357256,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52144","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":4.601900212,"size":131,"status":401,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["401 Unauthorized"]}} +{"level":"info","ts":1779793274.424823,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57866","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=4&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["image"],"Sec-Fetch-Mode":["no-cors"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":0,"size":3949,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["image/png"],"Content-Length":["1326350"]}} +{"level":"info","ts":1779793274.4337742,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Authorization":[],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Pragma":["no-cache"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.890962846,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793275.8778856,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52158","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":2.840634806,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793276.831044,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Cookie":[],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.306671039,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779793276.9734426,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":3.448934657,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793277.2885766,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=5&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"Cookie":[],"Sec-Fetch-Dest":["image"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["no-cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.369467293,"size":1327882,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["image/png"],"Content-Length":["1327882"]}} +{"level":"error","ts":1779793277.4618173,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"45510","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3163"]}},"bytes_read":3163,"user_id":"","duration":4.574060516,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793277.6703076,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.113751304,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793277.8962233,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.126243909,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793278.399938,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.409053384,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793278.5927813,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":4.480334176,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779793280.4914167,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52172","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.611832078,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793280.5405169,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"52516","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["674"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":674,"user_id":"","duration":3.067877628,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793280.8951244,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Cookie":[],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":1.990877857,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793280.9553561,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":2.050651352,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793282.0045485,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":3.13193989,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793282.1609783,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":3.287601641,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793282.2318723,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.76952558,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793282.9296806,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":5.022166195,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793283.614315,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":5.204212958,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793285.103153,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"52524","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["164"],"Accept":["application/json"]}},"bytes_read":164,"user_id":"","duration":4.561491943,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793285.131542,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50974","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":4.638561809,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793286.3984928,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Authorization":[],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json"]}},"bytes_read":0,"user_id":"","duration":6.182525809,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793287.1147742,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.874356254,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793287.5937345,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.800840563,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793287.7936618,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.585737754,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793287.933339,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.72614047,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793288.179682,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"52540","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.074871178,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793286.9686675,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":5.849546708,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793287.6572702,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.853584793,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793288.0821948,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"51118","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":4.768895499,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793289.6358628,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50088","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=4&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["image"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["no-cors"],"X-Forwarded-Proto":["http"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":0,"size":3949,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["image/png"],"Content-Length":["1326350"]}} +{"level":"info","ts":1779793290.3547559,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.622755243,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793290.9181097,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"49544","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.557337408,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793291.1916647,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":3.484963596,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793291.7051013,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=2&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"Sec-Fetch-Dest":["image"],"Sec-Fetch-Mode":["no-cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":3.28898233,"size":1344195,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Length":["1344195"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["image/png"]}} +{"level":"info","ts":1779793292.3101802,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.325837047,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793292.5002227,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.193988015,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793292.6388118,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35416","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.553970865,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793292.6595507,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.990308529,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793292.7782197,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.072497738,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793293.746477,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52658","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.687728336,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793294.0918002,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"49554","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":3.172270923,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793295.4630113,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.408203361,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793296.164712,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/redirect"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.560976029,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793296.2043798,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.181189712,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793296.3141153,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":3.290051493,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793296.7806182,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35424","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":4.133995817,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793297.3312294,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":5.008301712,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793297.7190354,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.050203048,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779793299.04033,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"55478","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":4.945432251,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793300.9849296,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.598832631,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793301.4976301,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.545797105,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793301.5610135,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":3.203663481,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793301.6923773,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.333647073,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793301.7119663,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38880","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.667790821,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779793302.551817,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52658","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=1&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"Sec-Fetch-Mode":["no-cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Dest":["image"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":3.278608773,"size":1318636,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["image/png"],"Content-Length":["1318636"]}} +{"level":"info","ts":1779793303.0965493,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":5.366709853,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793303.4534957,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"32794","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.410506788,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"Server":["Caddy"]}} +{"level":"info","ts":1779793303.6541893,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":6.31302398,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793304.7631788,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cache-Control":["no-cache"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.060066707,"size":738,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793306.381868,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"32804","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":2.918856286,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793306.4672394,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.737654703,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793306.6199102,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38894","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["650"],"Accept":["application/json"]}},"bytes_read":650,"user_id":"","duration":4.899588583,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779793307.1030333,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52658","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.394923991,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793307.1131802,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.815165308,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793307.197127,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.488968524,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793308.481101,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.808453557,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793308.7224412,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":5.612023812,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793310.7295053,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54472","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.082928234,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793311.0337117,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"52988","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":4.41003472,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779793311.9556956,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52658","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["*/*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.816775551,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793312.7481499,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":3.043335494,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793313.0021136,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.895675104,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793313.9100015,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.416894998,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793314.3460283,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54476","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["653"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":653,"user_id":"","duration":3.608651885,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793314.455362,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":5.720833509,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793314.8381178,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52658","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.873495939,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793315.0118866,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=0&dynamic_image_id=1&buttons=%5B%22reset%22%5D&vehicle_type=5&thumb_position=7","headers":{"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["no-cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"Sec-Fetch-Dest":["image"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":9.410492838,"size":1266681,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["image/png"],"Content-Length":["1266681"],"Server":["Caddy"]}} +{"level":"info","ts":1779793315.1143856,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":6.007438091,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779793315.032341,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Referer":["http://localhost:5173/redirect"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":6.474649413,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793315.1905851,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":2.085025897,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793315.1919854,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.080204405,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793316.277543,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.717415777,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793317.0740309,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.853457043,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793317.2759252,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"52988","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":4.836282867,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793317.2796476,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"]}},"bytes_read":0,"user_id":"","duration":5.265174618,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793319.379279,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=1&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["no-cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["image"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":3.418909564,"size":1318636,"status":200,"resp_headers":{"Content-Type":["image/png"],"Content-Length":["1318636"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793320.0349243,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52658","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Cookie":[],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":7.09689553,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793321.184811,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/redirect"]}},"bytes_read":0,"user_id":"","duration":2.777463657,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793321.7781422,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.96345436,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793322.6229756,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52658","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.579850643,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793322.734657,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":5.443114908,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793324.0088427,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Authorization":[],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.852945872,"size":737,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793324.88401,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.489846537,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793325.7070863,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52658","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=2&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["image"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["no-cors"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":0,"size":3949,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["image/png"],"Content-Length":["1344195"]}} +{"level":"error","ts":1779793325.7562256,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40652","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["3159"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3159,"user_id":"","duration":4.604838343,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793326.2616694,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.553502304,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793326.2677443,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"PUT","host":"localhost","uri":"/department/selfserve/studio/graph","headers":{"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Content-Type":["application/json"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Release-Channel":["stable"],"X-Frontend-Version":["a952dd2c"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Content-Length":["415"],"Origin":["http://localhost:5173"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":415,"user_id":"","duration":15.16557969,"size":71823,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Credentials":["true"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number, X-Release-Trace, X-Release-Channel, X-Frontend-Version, Cache-Control, Pragma, *"],"Access-Control-Allow-Methods":["GET, POST, PUT, PATCH, DELETE, OPTIONS"],"Access-Control-Allow-Origin":["http://localhost:5173"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793326.7776518,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.652614708,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793327.2592192,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":5.473953266,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779793327.5410743,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.794319009,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793327.6607997,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.768707039,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793328.8924968,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46340","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["671"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":671,"user_id":"","duration":3.128200955,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793329.3950882,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/department/selfserve/studio/simulate","headers":{"Cookie":[],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Content-Type":["application/json"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Origin":["http://localhost:5173"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Content-Length":["336"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":336,"user_id":"","duration":13.108748439,"size":8034,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Access-Control-Allow-Methods":["GET, POST, PUT, PATCH, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Access-Control-Allow-Origin":["http://localhost:5173"],"Access-Control-Allow-Credentials":["true"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number, X-Release-Trace, X-Release-Channel, X-Frontend-Version, Cache-Control, Pragma, *"]}} +{"level":"info","ts":1779793330.483126,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.208839267,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793331.3636997,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.450322535,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793332.2186997,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.305544481,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793332.2581706,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"X-Release-Channel":["canary"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.260711166,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793333.0267992,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":5.754752383,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779793333.0969949,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46350","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":4.203192569,"size":131,"status":401,"resp_headers":{"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779793333.9881632,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"50528","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3161"]}},"bytes_read":3161,"user_id":"","duration":4.68574606,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779793334.2122104,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":4.214483756,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793334.6575696,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":7.104699306,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793334.7465754,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.230557435,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793336.2028365,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54470","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["617"],"Accept":["application/json"]}},"bytes_read":617,"user_id":"","duration":3.103969405,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779793336.5656855,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":2.301673807,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793337.8732584,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":3.609555993,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793338.2799568,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.941290033,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793338.761768,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53212","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":4.761869203,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793338.7781677,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.739252836,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793340.2748477,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.604305154,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793340.3761775,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.606903161,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793340.9433563,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54486","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.738535948,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793341.9512057,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.802479717,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793342.394324,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":2.673365852,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793342.783015,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53222","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":4.019534495,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793342.8026023,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":2.519587306,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793342.8151188,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/department/selfserve/studio/simulate","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Origin":["http://localhost:5173"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Content-Type":["application/json"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Content-Length":["336"],"Sec-Ch-Ua-Mobile":["?0"],"Authorization":[],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":336,"user_id":"","duration":13.39206377,"size":8034,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Credentials":["true"],"Access-Control-Allow-Methods":["GET, POST, PUT, PATCH, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Access-Control-Allow-Origin":["http://localhost:5173"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number, X-Release-Trace, X-Release-Channel, X-Frontend-Version, Cache-Control, Pragma, *"],"X-Powered-By":["PHP/8.2.15"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793343.5667953,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.776046658,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793344.0305367,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.908548583,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793343.2027166,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Authorization":[],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept":["application/json"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.542647161,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793343.5718725,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.00698959,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793343.997925,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54996","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.033499749,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793344.0493298,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54494","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["604"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":604,"user_id":"","duration":4.926121533,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793344.2088645,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.066768414,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793345.110714,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":2.444605058,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793346.1886005,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Authorization":[],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":3.558150395,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793346.816011,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.602716876,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793347.8165693,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.591112075,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793348.5237622,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.938714332,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793348.597446,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":6.830260747,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793348.6911914,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"60098","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":4.639102318,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793349.8864205,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"55010","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":5.886344389,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793350.482236,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":1.953135462,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793350.482612,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.507255857,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793350.998617,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.057634868,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793351.1366992,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.195454674,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793352.9210906,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.383954009,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793353.174162,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40502","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.480559287,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793353.2683868,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"55018","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["606"],"Accept":["application/json"]}},"bytes_read":606,"user_id":"","duration":3.380421448,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793353.7815819,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/department/selfserve/studio/simulate","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Content-Length":["336"],"Content-Type":["application/json"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"]}},"bytes_read":336,"user_id":"","duration":12.774998487,"size":8034,"status":200,"resp_headers":{"Server":["Caddy"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number, X-Release-Trace, X-Release-Channel, X-Frontend-Version, Cache-Control, Pragma, *"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["http://localhost:5173"],"Access-Control-Allow-Credentials":["true"],"Access-Control-Allow-Methods":["GET, POST, PUT, PATCH, DELETE, OPTIONS"]}} +{"level":"info","ts":1779793353.8176494,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.208210436,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793354.0782082,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Cache-Control":["no-cache"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.785122564,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793355.7664433,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56540","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":2.580375953,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793356.2775528,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.553230915,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793356.440144,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":3.098427336,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793356.5739174,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.231805447,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793356.910611,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=0&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["image"],"Sec-Fetch-Mode":["no-cors"]}},"bytes_read":0,"user_id":"","duration":3.104402705,"size":1315963,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["image/png"],"Content-Length":["1315963"]}} +{"level":"error","ts":1779793357.5377207,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"42766","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":4.26632594,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779793358.341881,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.991797835,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793359.7621257,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.92236252,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793360.3705697,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56554","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.34200304,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793361.0305512,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":1.984529338,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793361.4719596,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":7.643740186,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779793362.3820302,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Authorization":[],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":3.339110221,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793362.6936615,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.649011466,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793362.7261345,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35820","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":5.185937058,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793362.7366836,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":2.965629531,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793364.85231,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.808656797,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793365.7288494,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56560","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":5.348937128,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793365.84591,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Site":["same-origin"],"Authorization":[],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json"],"Pragma":["no-cache"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.911749264,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793366.7821443,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"50114","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":4.047062409,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793367.277135,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":2.738400499,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793367.4778311,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.516969514,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793367.6182768,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.655784876,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793367.994687,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":4.018626783,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793368.0832884,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":6.601751443,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793370.279622,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.415642329,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793370.979659,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"49018","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.248075311,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793371.7951412,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":2.457261126,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793372.0533788,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"50124","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["2863"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2863,"user_id":"","duration":5.008851788,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779793372.509461,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["canary"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Dest":["empty"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":2.622383606,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793371.053683,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.618858161,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793371.6245337,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["*/*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.151669619,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793372.3001544,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":6.072061782,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779793372.5933256,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":5.153876389,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793373.663014,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"33942","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.467443139,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793373.7078247,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.279675382,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793374.2446332,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Authorization":[],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.472515825,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793376.1904128,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.444177681,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793376.2334363,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Frontend-Version":["a952dd2c"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.900053826,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793376.2699018,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.521869029,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793376.9385405,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":4.157232476,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793377.7255912,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Cookie":[],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.415519295,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793378.6093829,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"54272","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":4.938183976,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793381.016322,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":2.922325331,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793381.076184,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":7.306233953,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793382.426225,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":4.366269841,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793382.8948665,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"Sec-Fetch-Site":["same-origin"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":4.249516171,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793383.70964,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.649260937,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793384.07052,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":6.333868695,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793384.5816503,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":5.186929859,"size":739,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793385.4833605,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":2.090067944,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793385.5505388,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38226","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3142"]}},"bytes_read":3142,"user_id":"","duration":4.65151092,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793386.3320317,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":5.243897152,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793386.5982375,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Gpc":["1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.221799365,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793387.7571194,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Authorization":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.025957916,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793388.369864,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.412993362,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793388.7889764,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38238","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":3.230080259,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793389.5799112,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.496580532,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793391.489253,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.735475689,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793392.0279055,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.683409973,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793392.206842,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.48321251,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793392.3552508,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":3.631837857,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793392.4015806,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.089992644,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793393.5719967,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38252","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":4.781374825,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"]}} +{"level":"info","ts":1779793395.6084542,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":6.018409087,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793395.75736,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"60800","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3164"],"Accept":["application/json"]}},"bytes_read":3164,"user_id":"","duration":5.120126789,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793396.5425282,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43524","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":2.968823234,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793396.947885,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":6.877171574,"size":739,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793397.2392023,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.185954812,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793397.406158,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.756836307,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793397.5159273,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.472924715,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793397.6746466,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.619371603,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793398.2563932,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":4.1696561,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793398.897282,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"60812","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":3.131004808,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793399.0984967,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.318905456,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793399.8465056,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.267722821,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793399.8482292,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Cookie":[],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Pragma":["no-cache"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.255277853,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793400.7558632,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.19884964,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793400.8743038,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":3.316509137,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793401.0413127,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":5.352520342,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779793401.1862624,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43530","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":6.482171909,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793401.4231288,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.291360103,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793401.5961194,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"34852","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["164"],"Accept":["application/json"]}},"bytes_read":164,"user_id":"","duration":4.537713301,"size":131,"status":401,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["401 Unauthorized"]}} +{"level":"info","ts":1779793404.0639365,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept":["application/json"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.16568774,"size":739,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} +{"level":"error","ts":1779793404.111718,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"45600","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":2.922673191,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793405.020364,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"34864","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.422064709,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779793405.0485976,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":5.936469604,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793405.7600286,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Proto":["http"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":2.871247829,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793406.1820748,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":5.124739245,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793406.2264173,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.777930741,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793406.3120275,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Port":["80"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.437092364,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793406.4559278,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.579849356,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793409.2988894,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"50402","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.182246996,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793410.5376983,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":5.469814502,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793410.8535516,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"34874","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":5.831977805,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793411.005418,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":2.806212903,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793411.1699493,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.973259374,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793411.300557,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.109831782,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793411.4407134,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":3.249713708,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779793412.666159,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=1&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Dest":["image"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["no-cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"]}},"bytes_read":0,"user_id":"","duration":3.518390992,"size":1318636,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["image/png"],"Content-Length":["1318636"]}} +{"level":"info","ts":1779793413.2760954,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":4.503950706,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793415.552271,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Cache-Control":["no-cache"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":6.031534727,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793415.8013804,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"36940","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":4.946205878,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793415.906821,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":4.72541562,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793416.0212786,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"48608","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":6.900881006,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793416.1479223,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":5.598514289,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793416.716326,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.23181926,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793416.8990073,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.825255251,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793416.91987,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.43499849,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793417.953363,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":4.440707199,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793419.038055,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"48620","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.006196724,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793420.5277543,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"55978","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"User-Agent":["node"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":76,"user_id":"","duration":4.722357285,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793420.7956147,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.875930403,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793421.5756598,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.414193057,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793421.5960495,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":2.706232321,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793422.117503,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.264772615,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793422.1843364,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.332881629,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793422.2316267,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.780393875,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793424.2844467,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43736","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.978830113,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779793425.4037538,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Cache-Control":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-origin"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":5.192362541,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793425.6405017,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42880","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2863"],"Accept":["application/json"]}},"bytes_read":2863,"user_id":"","duration":5.109714985,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793425.7002184,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=2&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["image"],"Sec-Fetch-Mode":["no-cors"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.84666506,"size":1344195,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["image/png"],"Content-Length":["1344195"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793427.07464,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":5.483681599,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793427.255456,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.023054684,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793427.2636366,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43752","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":2.970830428,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793427.3272383,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/redirect"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":2.520253664,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793427.3861659,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"X-Forwarded-Port":["80"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.153764168,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793427.5133023,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":6.697646045,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793428.1988428,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":3.949472699,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793428.7782264,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42882","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.127443278,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793428.53469,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=3&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"Sec-Fetch-Mode":["no-cors"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["image"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":3.057603568,"size":1346479,"status":200,"resp_headers":{"Content-Length":["1346479"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["image/png"]}} +{"level":"error","ts":1779793430.0147057,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"43454","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":4.620340459,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793430.259379,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.56815774,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793430.4650886,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":5.253474217,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793430.8259122,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.17516244,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793430.8678021,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.617048984,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793430.8767314,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":3.201727013,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793431.1199696,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":3.44482952,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793431.1301074,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Accept":["*/*"],"Cache-Control":["no-cache"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":2.581594704,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793431.6822367,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"57588","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.514178874,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793434.5931118,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=4&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["no-cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["image"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.325924169,"size":1326350,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["image/png"],"Content-Length":["1326350"]}} +{"level":"info","ts":1779793435.5059984,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/redirect"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-origin"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":6.491269449,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793435.8927486,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"57590","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":4.201715497,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793436.0997913,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.089899918,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793436.6332188,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Release-Channel":["canary"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"]}},"bytes_read":0,"user_id":"","duration":3.069613741,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793436.883436,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.908897337,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793437.0431497,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":4.067606372,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793437.2515225,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":6.776129966,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793437.31609,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":6.479405686,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793439.6077564,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50082","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=2&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Dest":["image"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["no-cors"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"]}},"bytes_read":0,"user_id":"","duration":0,"size":3949,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Length":["1344195"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["image/png"]}} +{"level":"info","ts":1779793440.0471153,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=1&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"Sec-Fetch-Dest":["image"],"Sec-Fetch-Mode":["no-cors"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":0,"size":3949,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["image/png"],"Content-Length":["1318636"]}} +{"level":"error","ts":1779793440.9061227,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"51636","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":5.010518948,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793440.963166,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"58106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":2.656466777,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793441.4692857,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":3.184362487,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793441.664301,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.378894866,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793441.7643254,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=0&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"Sec-Fetch-Mode":["no-cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["image"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.603780593,"size":1315963,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["image/png"],"Content-Length":["1315963"]}} +{"level":"info","ts":1779793442.414519,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Authorization":[],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":5.086333181,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793442.6422246,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.378962171,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779793443.4018378,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36318","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":4.527451928,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793444.5318437,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36326","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Cache-Control":["no-cache"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":4.90194026,"size":739,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793446.6717198,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":3.022067303,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793446.965105,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38712","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3159"]}},"bytes_read":3159,"user_id":"","duration":4.922244715,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793447.146769,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36318","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.529857476,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793447.4140263,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.796330261,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793447.5844712,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.374373269,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793447.6834414,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":5.256513308,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793448.3663573,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.714260412,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793451.9569764,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38912","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":4.983325152,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793453.0195866,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57882","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":5.325134622,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793455.5865006,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"36318","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":8.428375939,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793456.6552987,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57894","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":9.527973714,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793456.7955847,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":9.668207117,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793459.8163042,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":13.274176956,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"error","ts":1779793461.272676,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38924","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":11.149081758,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793462.2191157,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"39138","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3162"],"Accept":["application/json"]}},"bytes_read":3162,"user_id":"","duration":11.114138311,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793471.3526032,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42636","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":10.077614743,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779793472.071211,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"34908","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["674"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":674,"user_id":"","duration":9.842026366,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779793482.4878893,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41004","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":11.132168879,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793483.0284126,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"40978","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":10.955723208,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793490.1723278,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"41536","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":9.009374149,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793491.0121326,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54336","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":10.389826613,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779793501.5245593,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"60322","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":11.351025258,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793502.852163,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"54422","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":11.836735419,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793508.2340074,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"47792","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":12.210693167,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779793511.9117367,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"45576","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.668429029,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793512.2495365,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"55856","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":10.723531406,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779793521.0260339,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46280","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":10.685741812,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793521.2179666,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"39654","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":10.846059649,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779793530.4919157,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40456","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":9.456114362,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793531.7146428,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54990","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":10.494157127,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793538.3037078,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":9.044566088,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793540.6507945,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"60300","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["653"],"Accept":["application/json"]}},"bytes_read":653,"user_id":"","duration":8.92798424,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793541.282889,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"60762","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Length":["76"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":10.78841154,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793549.7369144,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"50396","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":10.749995845,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779793561.166154,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"36412","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":11.421489154,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793563.50989,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35462","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3163"]}},"bytes_read":3163,"user_id":"","duration":9.887713783,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779793569.5860782,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":12.009241101,"size":740,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793571.318495,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"54132","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":12.709967936,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793572.7495058,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43962","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["671"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":671,"user_id":"","duration":11.031260431,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793582.9908988,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44992","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Length":["163"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":163,"user_id":"","duration":10.634495585,"size":131,"status":401,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["401 Unauthorized"]}} +{"level":"error","ts":1779793593.2778742,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34336","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["617"],"Accept":["application/json"]}},"bytes_read":617,"user_id":"","duration":10.285055931,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793594.4645789,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33094","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Cookie":[],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.693281389,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793595.983165,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33066","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":6.220143516,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793597.9127614,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33064","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["*/*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":10.06291418,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793598.185336,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"Sec-Ch-Ua-Mobile":["?0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":10.44682037,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793598.4925487,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33042","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":10.738375036,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793599.858432,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33098","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Authorization":[],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":11.400363463,"size":738,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793600.4860387,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33068","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":12.634000149,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793601.0807781,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33050","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":13.22981761,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793602.6957395,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42614","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3172"]}},"bytes_read":3172,"user_id":"","duration":13.241413039,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793603.4461637,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44204","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":12.082302731,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793612.0199087,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42088","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":9.315207026,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779793612.6516893,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41580","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["604"],"Accept":["application/json"]}},"bytes_read":604,"user_id":"","duration":9.203589188,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793623.0879111,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"40610","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Content-Length":["164"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":164,"user_id":"","duration":11.066190196,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793625.275999,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"57088","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["76"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":12.62164976,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779793624.5702412,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52814","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":8.689808551,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793632.0740569,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"50760","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["619"],"Accept":["application/json"]}},"bytes_read":619,"user_id":"","duration":10.793130442,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779793633.7717109,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52690","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":9.189710888,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793643.9480815,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"39130","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":12.050463419,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793645.487129,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52142","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":11.444004203,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793653.4797146,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53940","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":9.529880715,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793652.742031,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35948","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":9.222775766,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793662.8276994,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"43840","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":11.321226227,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793663.955688,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"43844","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":11.210815177,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793669.3416116,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45130","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":8.282440734,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793669.3421435,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33068","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":8.290905461,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793669.3429754,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33064","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":8.283705377,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793669.4096951,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33050","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":8.360394869,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793669.6556978,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33098","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["3c15caa5c36c4ab9be92f3ab4655d2a9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"]}},"bytes_read":0,"user_id":"","duration":8.60309935,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793669.8894775,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33042","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":8.830262973,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793675.3224843,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"57334","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":12.491611633,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793675.5977783,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"48138","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3138"]}},"bytes_read":3138,"user_id":"","duration":5.81036899,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793682.7813058,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"49408","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":9.020054018,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793683.2086442,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"55564","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":9.723643213,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779793693.6870818,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42252","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":10.904301859,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793694.2824612,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"44882","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":10.806930537,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779793703.4027572,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56624","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":9.714353746,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779793703.7405732,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"47132","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":9.45049026,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779793712.3020246,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50912","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":10.79143888,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793713.2784781,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"57030","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":11.428963049,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793723.1637533,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"48672","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["604"],"Accept":["application/json"]}},"bytes_read":604,"user_id":"","duration":10.860180009,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793732.1046517,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33042","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":0.0102143,"size":0,"status":499,"resp_headers":{"Server":["Caddy"]}} +{"level":"error","ts":1779793736.1797926,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"38494","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":13.213760803,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779793736.4409013,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"33530","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":8.472210317,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779793737.9679518,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"47046","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3168"]}},"bytes_read":3168,"user_id":"","duration":6.507682002,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793738.3316143,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38346","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.745570724,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779793741.2660744,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"49570","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["674"],"Accept":["application/json"]}},"bytes_read":674,"user_id":"","duration":3.287650853,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793743.334696,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38358","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.73636049,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793747.3355927,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"49576","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["164"],"Accept":["application/json"]}},"bytes_read":164,"user_id":"","duration":6.068066221,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793748.384904,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38366","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":5.04232231,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779793750.7646403,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"50380","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.427349833,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779793753.6679108,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"41006","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":5.279652215,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793758.101176,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"50392","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":7.335214669,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793763.142316,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"44330","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["606"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":606,"user_id":"","duration":5.039730082,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793766.3701766,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"49690","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":5.123076724,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779793768.236191,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"36850","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3138"]}},"bytes_read":3138,"user_id":"","duration":4.714542336,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779793773.0868032,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"56744","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["2863"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2863,"user_id":"","duration":6.713795528,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793773.663781,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"36856","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":5.419223889,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793777.061522,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"44686","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.966854854,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793779.6270185,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"60804","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Length":["163"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":163,"user_id":"","duration":5.961420409,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793784.830147,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"44694","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":7.495554397,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779793787.1897042,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"60808","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["617"],"Accept":["application/json"]}},"bytes_read":617,"user_id":"","duration":7.559677474,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779793788.227373,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42628","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.387191617,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779793791.9684343,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38078","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":4.776867978,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793793.0206196,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"57108","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":6.652343546,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779793793.4064932,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38080","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.298713517,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793798.6329021,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"57108","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":5.223660069,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793809.0666075,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58468","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":10.651827638,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779793818.879584,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42796","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":9.801711383,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793819.873836,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"52658","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3177"],"Accept":["application/json"]}},"bytes_read":3177,"user_id":"","duration":10.82032529,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779793826.9846249,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"60582","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":9.000559673,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779793827.6744137,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56590","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":10.433771662,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779793831.164067,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39286","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.481588057,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793831.80978,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54094","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Content-Length":["164"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":164,"user_id":"","duration":4.823220244,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"]}} +{"level":"info","ts":1779793833.5190992,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40134","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.052766383,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793833.6519878,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40116","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/reCAPTCHA/public","headers":{"Cookie":[],"Referer":["http://localhost:5173/"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":2.820464096,"size":213,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793834.3666096,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40126","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Cache-Control":["no-cache"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":2.937207745,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793834.7671564,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37538","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":2.954648938,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793835.575672,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40132","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":4.109336607,"size":1385,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793835.8100715,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"47670","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":4.640836496,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793836.4331768,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40162","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/redirect"]}},"bytes_read":0,"user_id":"","duration":4.963261754,"size":1932,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793839.8255208,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40170","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.047565966,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793839.9529927,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40162","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Referer":["http://localhost:5173/redirect"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.47122326,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793840.070603,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37554","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":5.302117783,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793841.8208473,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40132","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":5.338766153,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793843.407023,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40134","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways?view=summary","headers":{"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":6.718010789,"size":1923,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793844.695994,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"38128","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":4.622926314,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793845.6796021,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40170","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.546994216,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793845.7953784,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40162","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":5.820725536,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793848.304648,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40132","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":6.444500959,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779793851.9410505,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40134","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":10.339112298,"size":1385,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793853.7780669,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"46704","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":10.945839938,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779793856.8727646,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54554","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3158"]}},"bytes_read":3158,"user_id":"","duration":10.895378856,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793865.4830372,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"48692","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":11.702233661,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779793865.8723402,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40126","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/superuser/system/status","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":31.051036215,"size":9122,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793866.1209471,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"48054","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":9.239899478,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793872.7940562,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40134","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":8.840250648,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793875.0657055,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"34390","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":9.575288511,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779793878.3608103,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"33016","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":12.238208594,"size":131,"status":401,"resp_headers":{"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779793881.6115634,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40134","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Accept":["*/*"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":8.824711447,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793883.7782874,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54976","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["2863"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2863,"user_id":"","duration":10.338104914,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793885.4227035,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"36356","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":8.947209847,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779793894.3146415,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"46258","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":10.528398779,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793896.5876768,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44004","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":11.163613569,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793905.4559617,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41808","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":8.867086891,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779793906.1658053,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"50050","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":11.847929539,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779793914.6887584,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40134","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":11.746858367,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793914.7468593,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"42990","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":11.150245634,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793924.2326334,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46970","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":10.595401728,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779793926.8065202,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40126","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Cookie":[],"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":13.145580882,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779793928.0449033,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53172","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3168"],"Accept":["application/json"]}},"bytes_read":3168,"user_id":"","duration":7.710761741,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"Server":["Caddy"]}} +{"level":"error","ts":1779793933.6604748,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56200","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["650"],"Accept":["application/json"]}},"bytes_read":650,"user_id":"","duration":9.415983092,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793936.0085247,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"47068","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["674"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":674,"user_id":"","duration":9.82920797,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779793941.469169,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40134","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":8.258695857,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779793941.5731242,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"40126","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":8.36270107,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793943.8176663,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"36974","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":11.772850208,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779793945.6530583,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44482","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways?view=summary","headers":{"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":12.430939495,"size":1916,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779793947.0272434,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"49582","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":11.017391123,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"]}} +{"level":"error","ts":1779793954.6702275,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41342","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":10.844358145,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779793957.1459076,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"39354","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":10.117096444,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793965.42701,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"49382","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":12.799410462,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793966.7108884,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"39264","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":11.426157952,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779793977.0630555,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53998","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":10.35057728,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793988.2769475,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"50732","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":11.210843374,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793988.5245569,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35246","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3164"]}},"bytes_read":3164,"user_id":"","duration":10.844151887,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793995.764089,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"45526","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":9.098486001,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779793997.2206879,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"51192","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["2863"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2863,"user_id":"","duration":10.808525565,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779794007.0158303,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"60502","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":9.787033086,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779794007.7692635,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"51176","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Length":["163"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":163,"user_id":"","duration":12.003401301,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794017.28462,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"36530","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["617"],"Accept":["application/json"]}},"bytes_read":617,"user_id":"","duration":9.513025737,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794019.095945,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"48044","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":11.813881244,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794025.927571,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"51898","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["653"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":653,"user_id":"","duration":8.69028916,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794027.611528,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"36542","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":12.192297047,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794037.2671034,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50978","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":9.653966773,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794038.6750195,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"40450","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":12.744255307,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794047.8371894,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"47074","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":7.425678214,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794048.1562276,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"37032","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":12.758977077,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794057.2412212,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"57004","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":9.395750882,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779794067.754445,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"52130","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3187"]}},"bytes_read":3187,"user_id":"","duration":10.90323094,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794068.4139717,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35240","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":10.903651358,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794075.4585412,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46272","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":8.929830056,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794076.6725297,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"44694","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":10.798304004,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794086.6682127,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"47510","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Length":["76"],"Connection":["keep-alive"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":11.205784158,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"error","ts":1779794089.0701942,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"59902","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":12.522787564,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794097.8825622,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"41328","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":8.811022941,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794106.5205941,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"59546","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":10.520586681,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794107.9648342,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41532","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3163"]}},"bytes_read":3163,"user_id":"","duration":9.342860622,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794115.7061534,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42950","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":9.183248008,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779794117.8190908,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52806","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":9.846252706,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794126.8498232,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"40892","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":11.141188609,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794128.5648777,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41056","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":10.744616982,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794135.5442407,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"39916","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":10.601049538,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794135.7375455,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50014","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":9.081277519,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794145.5488682,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"33538","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":9.996058662,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"error","ts":1779794146.1898913,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46702","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":10.451203661,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794156.5808716,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"40832","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":10.769525446,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794156.5828261,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"32792","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":10.39158961,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794165.6696792,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"42428","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":10.962931571,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794165.7064328,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"52514","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":10.996606627,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779794176.4484172,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46530","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":11.705364834,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794177.768464,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"44268","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept-Language":["*"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":12.38883775,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794186.0127404,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41652","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":9.555623091,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794195.8869667,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41656","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":11.50151108,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794206.3620107,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42894","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":10.467073893,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794208.3442361,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"48594","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3170"]}},"bytes_read":3170,"user_id":"","duration":12.454529896,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794213.8685787,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"49210","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":7.499996992,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779794216.004297,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50798","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/reCAPTCHA/public","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/"]}},"bytes_read":0,"user_id":"","duration":10.254905416,"size":213,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779794216.0961185,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50800","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Cache-Control":["no-cache"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Accept":["*/*"]}},"bytes_read":0,"user_id":"","duration":8.139104952,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779794216.0961308,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50804","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":8.139258759,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794216.3039143,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"58060","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":9.80248665,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779794222.969849,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"52062","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":6.664790886,"size":131,"status":401,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779794228.784326,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50804","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":10.139343553,"size":1385,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779794230.5900967,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"50800","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Cookie":[],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":11.931562822,"size":1932,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779794231.46074,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"50592","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":8.489540807,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794232.9580631,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39424","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3149"]}},"bytes_read":3149,"user_id":"","duration":7.39007211,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779794241.669986,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"45074","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":8.703830824,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794241.7938516,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"50606","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":10.331749512,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794252.9665623,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"45084","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":13.201165986,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794252.9677362,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"34332","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":13.078250135,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794262.223487,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"45652","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":11.669604926,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794262.2763739,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50124","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":9.307730469,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779794272.1796424,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39156","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":11.770947209,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794273.069437,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"55546","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2863"],"Accept":["application/json"]}},"bytes_read":2863,"user_id":"","duration":12.712194514,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794281.8719728,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"51262","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["604"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":604,"user_id":"","duration":9.690341678,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794283.2530494,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"33908","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["653"],"Accept":["application/json"]}},"bytes_read":653,"user_id":"","duration":10.17299259,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779794293.086688,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"35904","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Content-Length":["76"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":11.21217625,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794293.5858114,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"43852","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":10.06326294,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794297.3316371,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53416","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":10.445666634,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794300.6294591,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"55490","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":8.924377274,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794304.6355536,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39458","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":9.183033158,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794311.549381,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"53816","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Type":["application/json"]}},"bytes_read":76,"user_id":"","duration":10.916325848,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794313.0662367,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"45338","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":8.153348134,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779794323.22932,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"60028","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":10.155780592,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794332.940495,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"56870","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":11.577077324,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794344.072532,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"43418","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3188"]}},"bytes_read":3188,"user_id":"","duration":10.358292215,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794352.1673172,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"40956","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":8.083002868,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794353.707594,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50718","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3150"]}},"bytes_read":3150,"user_id":"","duration":7.276026756,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794362.6224103,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42728","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":12.335899172,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794363.0074368,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50726","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":11.173569687,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794366.2821405,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"43410","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.657569034,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794367.723252,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"37170","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":5.224547017,"size":131,"status":401,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["401 Unauthorized"]}} +{"level":"error","ts":1779794370.9428387,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44518","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":3.217928451,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794372.7372615,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"57486","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":6.453661637,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779794376.2578962,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44526","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":5.313493328,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"error","ts":1779794376.552354,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"57500","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":3.813338033,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779794380.8409472,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53228","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":4.58171129,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779794382.8200996,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"49226","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.264529406,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779794384.8570046,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"49230","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"Content-Type":["application/json"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.878353291,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794387.752216,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"59592","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":6.794260911,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794391.123271,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56650","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":6.263152879,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794392.7917786,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"33796","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":5.029987357,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794394.5453663,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56656","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["650"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":650,"user_id":"","duration":3.41402897,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794397.9948156,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"57382","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.938800394,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779794400.5672479,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56626","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":5.753387564,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779794401.4347763,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"57386","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.431387902,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794404.3903856,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56632","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.814824203,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779794406.492525,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37708","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.067074357,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779794406.972964,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43328","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Authorization":[],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.865416717,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779794407.2971094,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"35418","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":5.854097997,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794408.7459576,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"35428","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":4.352832041,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779794410.0582662,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37696","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/release/timeline/events","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Content-Type":["application/json"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Origin":["http://localhost:5173"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Content-Length":["24768"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Accept":["*/*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/redirect"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"]}},"bytes_read":24768,"user_id":"","duration":5.633244158,"size":136,"status":202,"resp_headers":{"Status":["202 Accepted"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["http://localhost:5173"],"Server":["Caddy"],"Access-Control-Allow-Credentials":["true"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number, X-Release-Trace, X-Release-Channel, X-Frontend-Version, Cache-Control, Pragma, *"],"Access-Control-Allow-Methods":["GET, POST, PUT, PATCH, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794423.9756165,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"59762","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3161"]}},"bytes_read":3161,"user_id":"","duration":6.525211746,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779794424.88292,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53082","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["3157"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3157,"user_id":"","duration":5.975553794,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794427.4295661,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"60956","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["674"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":674,"user_id":"","duration":3.442998797,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779794428.8203094,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44036","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":3.929240071,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779794432.281439,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"60960","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":4.850450517,"size":131,"status":401,"resp_headers":{"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779794433.68528,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44038","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":4.863607853,"size":131,"status":401,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["401 Unauthorized"]}} +{"level":"error","ts":1779794435.8130133,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54992","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.52920701,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794437.1954865,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"60592","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["617"],"Accept":["application/json"]}},"bytes_read":617,"user_id":"","duration":3.507973329,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779794438.8277638,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43242","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Cache-Control":["no-cache"],"Cookie":[],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.485476585,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779794440.0364296,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43232","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.700883772,"size":1385,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779794440.0065658,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37696","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Referer":["http://localhost:5173/redirect"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.547444126,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779794440.9321635,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43256","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":6.43797443,"size":1932,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779794441.4408503,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"55004","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":7.50069329,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794443.0108213,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"60600","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":7.688011792,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779794445.6760979,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37696","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.600515567,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794446.4347749,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"36924","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":4.991474428,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779794446.7660277,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43256","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.429533526,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779794447.6386223,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40908","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":4.624635683,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779794448.5477066,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43232","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":7.210651261,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779794448.919742,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37696","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":3.205439309,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779794450.2144845,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43242","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways?view=summary","headers":{"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":8.712495136,"size":1923,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779794451.9079726,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"59618","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":5.469037644,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794452.9310946,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"43096","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":5.288784065,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779794453.1343477,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43256","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/superuser"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.995078804,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779794462.6608534,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43232","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":13.760640686,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779794463.016345,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"38294","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":11.104762994,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794463.485807,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"59354","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3006"],"Accept":["application/json"]}},"bytes_read":3006,"user_id":"","duration":10.840040791,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779794470.2410285,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"40838","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":9.092761569,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779794471.8296418,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40068","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":10.211954644,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779794481.081088,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"48798","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":10.575818621,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794484.480202,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"59962","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":12.386442623,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779794488.8119738,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43232","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":8.398971833,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779794489.8101633,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37696","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":9.385647761,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794489.9471214,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"41864","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":8.858312605,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779794491.4098043,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43242","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Cookie":[],"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":10.988748097,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779794491.4453294,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43256","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":11.027395702,"size":1385,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"error","ts":1779794492.907534,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41594","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["650"],"Accept":["application/json"]}},"bytes_read":650,"user_id":"","duration":8.41932623,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794494.6910894,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"60746","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["76"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":4.741417007,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779794497.8471835,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37696","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":8.605321917,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779794502.3140693,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44554","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/superuser/system/status","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":64.262431403,"size":9235,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779794505.0302434,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43242","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Referer":["http://localhost:5173/superuser"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.741295448,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779794505.0978622,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43256","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.137146941,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794505.8114512,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"60752","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":14.763463738,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779794505.9008975,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44554","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.228379274,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779794506.335245,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37696","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/superuser"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Port":["80"],"Sec-Fetch-Dest":["empty"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":6.398042308,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779794507.8493068,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33036","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":7.552707708,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779794508.2649038,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43232","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":7.981069179,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779794508.59807,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43256","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":3.151840286,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779794512.0809457,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33036","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Referer":["http://localhost:5173/superuser"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.871631701,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794513.4554255,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"38350","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["3169"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3169,"user_id":"","duration":4.563904271,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779794513.5176847,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43232","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.571796357,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779794514.0450265,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43256","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.433353995,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"error","ts":1779794516.8440456,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"38362","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":3.377013381,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794518.2013447,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56506","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3139"]}},"bytes_read":3139,"user_id":"","duration":5.077991343,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794522.2408834,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41094","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":4.029261606,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794522.8882892,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42818","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":6.041417549,"size":131,"status":401,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["401 Unauthorized"]}} +{"level":"info","ts":1779794524.4943225,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33036","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.858266882,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794525.4389791,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42828","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["619"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":619,"user_id":"","duration":4.416206648,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779794526.211494,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41110","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":5.834463551,"size":131,"status":401,"resp_headers":{"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779794526.845731,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37696","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.237038699,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779794527.6379442,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33036","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.826853963,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794529.4542236,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"47356","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["617"],"Accept":["application/json"]}},"bytes_read":617,"user_id":"","duration":3.24088499,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794530.537222,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53878","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":5.096412643,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779794533.8559933,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53892","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":3.317371304,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794535.314982,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"47360","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":5.859446026,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779794538.139483,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42162","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":2.823129466,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794538.5083241,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"45728","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":4.649519173,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794543.0052538,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"51490","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.49430578,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794543.5317621,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"45744","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.389677934,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794546.255495,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"51524","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.242318316,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794549.096806,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42328","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":5.949378532,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794551.3924935,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"51540","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.858928098,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794552.2594788,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42330","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.154064546,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794553.2618272,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"51542","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.728065469,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794555.9647586,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44886","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3006"],"Accept":["application/json"]}},"bytes_read":3006,"user_id":"","duration":5.303148427,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779794558.4135516,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"60940","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":5.148743426,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794559.242544,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44902","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["650"],"Accept":["application/json"]}},"bytes_read":650,"user_id":"","duration":3.269505224,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779794564.6324537,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"60940","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":5.38777856,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794575.458647,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"48228","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3163"]}},"bytes_read":3163,"user_id":"","duration":5.006018524,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794578.870007,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"48234","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":3.400604843,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794581.1651378,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"59966","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3132"]}},"bytes_read":3132,"user_id":"","duration":4.865895363,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794582.0138154,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"48244","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Content-Length":["164"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":164,"user_id":"","duration":5.016988775,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794582.703814,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"37808","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["671"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":671,"user_id":"","duration":3.403640344,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794585.3366842,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"36278","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.321397677,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794587.4878943,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"37818","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":4.782529512,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794590.201006,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"36294","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.862634509,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794592.6617508,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"37820","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":5.172546657,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"error","ts":1779794595.379843,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"59568","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":5.177591271,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794598.686487,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"59578","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":6.023301426,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779794601.9254506,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"43554","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":6.541692234,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779794602.0121017,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46478","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.323748979,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779794607.011261,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"43554","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"]}},"bytes_read":76,"user_id":"","duration":4.996397223,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"Server":["Caddy"]}} +{"level":"error","ts":1779794608.2274222,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"45326","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":6.297249702,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794610.0158818,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46484","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.905753562,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794610.0183172,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"40282","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.683621415,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794615.2345505,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54724","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":5.192449738,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794615.346611,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"40284","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":5.053204565,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794618.6599581,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"40294","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.304868401,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794621.9179091,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54730","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":6.420853939,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794623.863727,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"49286","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.200504049,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794626.010529,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44544","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":4.083382931,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794631.4841406,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"49286","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["76"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":5.471227348,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794643.9994833,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"55912","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3161"]}},"bytes_read":3161,"user_id":"","duration":9.976923702,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794659.8110745,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"40562","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":15.797344351,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794662.907596,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"47810","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3138"]}},"bytes_read":3138,"user_id":"","duration":21.70109014,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779794665.9016194,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"43280","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":11.179882059,"size":131,"status":401,"resp_headers":{"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779794665.0352616,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"51688","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["366"]}},"bytes_read":366,"user_id":"","duration":4.367631783,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794669.1669836,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"48630","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":5.182296214,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779794670.1604989,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53564","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Length":["163"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":163,"user_id":"","duration":5.12399,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794675.3476272,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53568","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":5.18452256,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794676.0630302,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"48638","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":6.893481967,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794679.5599139,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"40418","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["606"],"Accept":["application/json"]}},"bytes_read":606,"user_id":"","duration":3.495232098,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779794680.3109946,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42248","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.960587644,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794683.5974178,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42260","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.285043181,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794684.705494,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"59122","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.141457899,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779794689.187131,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42212","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.477977783,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794689.7648997,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"46656","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.164037698,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794691.9762244,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42222","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":2.778178335,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779794692.9976554,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"33506","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.392498477,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794693.986134,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"49470","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":2.856043514,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794695.8738916,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42232","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":5.512804846,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779794698.268207,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"49476","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3006"],"Accept":["application/json"]}},"bytes_read":3006,"user_id":"","duration":4.019032825,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779794699.3418896,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"40206","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.46058113,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779794701.9192915,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"49488","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.642122358,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794706.281173,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"41130","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":6.934895792,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794706.9794106,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"41446","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":5.057532238,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779794721.2978947,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"55586","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3162"]}},"bytes_read":3162,"user_id":"","duration":4.897391696,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794721.764187,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40704","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3140"]}},"bytes_read":3140,"user_id":"","duration":4.703159547,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779794724.430406,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"39778","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":3.122483515,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794726.1094623,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50764","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":4.337242495,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794730.0091195,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"39794","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":5.577606304,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"]}} +{"level":"error","ts":1779794731.9593468,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50768","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":5.848605381,"size":131,"status":401,"resp_headers":{"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779794733.3394737,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"59776","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.328958292,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794736.4345937,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"47892","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":4.473763843,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794737.9441974,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"59780","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":4.60352872,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794741.2533545,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"59790","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["606"],"Accept":["application/json"]}},"bytes_read":606,"user_id":"","duration":3.307668261,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794741.3144884,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"47894","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.878393887,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779794744.3363461,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58890","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.019985573,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794746.1825922,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"53006","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":4.926323876,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794749.7325046,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"53008","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":5.393227374,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794749.1677868,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54384","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["2863"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2863,"user_id":"","duration":4.869249029,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794753.7335181,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"49244","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":6.276724757,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794755.199009,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"49266","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":6.023193305,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779794757.114198,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"49260","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.372774156,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794760.4201078,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"49270","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.958679,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779794762.290991,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"59314","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.914643409,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779794763.9430673,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54084","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.515508472,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794765.6034226,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"59320","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.304326648,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794769.0380936,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"39924","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Length":["76"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":5.092045005,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794772.6927497,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"39936","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":7.085475296,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794784.2327952,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53062","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3160"]}},"bytes_read":3160,"user_id":"","duration":5.084795782,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794785.5828726,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"60218","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3141"],"Accept":["application/json"]}},"bytes_read":3141,"user_id":"","duration":4.83357434,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794787.5755916,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53078","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":3.333087364,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794788.9663973,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58244","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":3.375637717,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779794793.8984554,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"45838","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":6.321306316,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794795.1197171,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58246","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":6.151727495,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794798.98178,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"45840","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":5.081597123,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779794800.3233984,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"45344","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":5.20196765,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794803.911182,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"45804","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":4.92773633,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779794805.1597486,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"45360","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.834621439,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779794805.6073747,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"45816","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["606"],"Accept":["application/json"]}},"bytes_read":606,"user_id":"","duration":3.581173243,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794806.7511725,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"47628","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["604"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":604,"user_id":"","duration":3.476508225,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794811.9601836,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"37342","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":6.349437537,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779794812.9654791,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"37344","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.211845012,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794822.9142108,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"47642","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":11.157502366,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794822.9958818,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42034","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2863"],"Accept":["application/json"]}},"bytes_read":2863,"user_id":"","duration":11.032713628,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794832.550352,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"43604","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":9.547312156,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794833.4530675,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"49524","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["650"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":650,"user_id":"","duration":10.531095869,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794842.4273295,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38276","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3006"],"Accept":["application/json"]}},"bytes_read":3006,"user_id":"","duration":10.608898394,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794842.6089966,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"43606","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":11.705001064,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779794852.581862,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"55274","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":10.146412213,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794852.5823066,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"59796","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["653"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":653,"user_id":"","duration":9.965281578,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779794861.7879176,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"59434","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":11.084467613,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794863.0563285,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"59428","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":12.356370785,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"Server":["Caddy"]}} +{"level":"error","ts":1779794886.7797675,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56128","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3147"]}},"bytes_read":3147,"user_id":"","duration":11.002494786,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794887.8415086,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"56926","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3170"],"Accept":["application/json"]}},"bytes_read":3170,"user_id":"","duration":10.022105644,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794891.7009356,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40480","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["671"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":671,"user_id":"","duration":6.807213282,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794893.7697492,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"51918","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":7.810757325,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794898.7993767,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53104","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":7.095241773,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794902.438138,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"45552","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["164"],"Accept":["application/json"]}},"bytes_read":164,"user_id":"","duration":8.666963766,"size":131,"status":401,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"error","ts":1779794905.001585,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41818","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":6.195947893,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794907.0593443,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37736","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["619"],"Accept":["application/json"]}},"bytes_read":619,"user_id":"","duration":4.619195809,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779794910.8094602,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41824","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":5.805900354,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794913.8641026,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37748","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":6.803076535,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794916.7516382,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38346","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":5.940312527,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794917.4873984,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42698","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":3.619741896,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779794920.5013819,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"49596","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.626973548,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779794922.9535794,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"50676","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"User-Agent":["node"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":7.343562369,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794927.3059525,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"36548","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":6.800259559,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"Server":["Caddy"]}} +{"level":"error","ts":1779794930.1857255,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"33624","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":7.228939509,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794930.9301257,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39240","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.604360078,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794933.3622644,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"41294","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.163868833,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794936.0187492,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39252","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.8236829,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794938.3860345,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"41298","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.761172449,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794941.0010471,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"57160","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":4.971532391,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794941.65493,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"45520","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["653"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":653,"user_id":"","duration":3.261567036,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779794946.2957423,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"53958","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.291576163,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779794946.8771195,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"53960","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":5.218926395,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794963.2866592,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"49856","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3162"]}},"bytes_read":3162,"user_id":"","duration":6.268033926,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794963.2871208,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46088","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3140"]}},"bytes_read":3140,"user_id":"","duration":7.142188749,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794965.8073525,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"49860","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":2.509779371,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794965.8073423,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46094","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["671"],"Accept":["application/json"]}},"bytes_read":671,"user_id":"","duration":2.509765106,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779794975.136322,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58636","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":11.212474888,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779794975.1388226,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"34398","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":11.214993175,"size":131,"status":401,"resp_headers":{"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779794985.7457235,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44684","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["617"],"Accept":["application/json"]}},"bytes_read":617,"user_id":"","duration":10.599364908,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794985.765781,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"46990","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":10.617777196,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779794996.7374096,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"55438","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":10.970269337,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779794998.098587,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40164","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":12.350908185,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795005.1496122,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37120","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":10.297778748,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779795005.7995992,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34736","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":9.586758744,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795016.5560875,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"43650","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":11.403310195,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795017.7116463,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"43666","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Content-Length":["76"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":11.908859885,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795018.4064825,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"47604","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["3006"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3006,"user_id":"","duration":7.596463332,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795027.9999247,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"47606","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":9.583787301,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795029.6907446,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"50608","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["2863"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2863,"user_id":"","duration":13.131835553,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795037.7281706,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"52942","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":9.909062396,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795038.5157516,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52656","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":12.126672062,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779795048.0211842,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39816","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":9.496102796,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795048.9483762,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54596","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":10.956400764,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779795058.2947075,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"43808","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["653"],"Accept":["application/json"]}},"bytes_read":653,"user_id":"","duration":11.22469804,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795058.8338723,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"54218","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":12.695806003,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795064.1540635,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"47944","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":6.410661266,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795072.9699457,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43158","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3145"],"Accept":["application/json"]}},"bytes_read":3145,"user_id":"","duration":5.797952312,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795077.3706884,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43168","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":4.392644421,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795080.3804507,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"39032","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3162"]}},"bytes_read":3162,"user_id":"","duration":4.200870221,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795081.956208,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34204","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":4.584114905,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795083.9731905,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"39036","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":3.57987689,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795085.375223,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34214","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":3.417592039,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779795088.5166671,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"39042","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":6.425919122,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"]}} +{"level":"error","ts":1779795089.8267212,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34228","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":6.333575706,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779795091.8416164,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"34674","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.323045721,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779795093.741001,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"60904","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["604"],"Accept":["application/json"]}},"bytes_read":604,"user_id":"","duration":3.913135183,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795096.5962286,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"34690","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.753231787,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795098.8871067,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"55576","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.14280496,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"Server":["Caddy"]}} +{"level":"error","ts":1779795101.189047,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"51592","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":4.590992088,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795103.456404,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39380","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.707402119,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795106.629616,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39382","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["650"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":650,"user_id":"","duration":3.165192305,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795108.0243177,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"55576","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":6.833165254,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795112.603069,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"57140","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":5.706985025,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779795114.1341624,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42510","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":6.107033373,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795116.2585738,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"57148","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["650"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":650,"user_id":"","duration":3.646172862,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795115.7653017,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54186","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.509677529,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795119.7210705,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"55120","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.345889013,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795122.6103437,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54198","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":6.579059031,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795126.0070865,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"60342","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.388461905,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795130.9591086,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"56526","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":4.94875463,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795137.3194718,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46810","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3158"]}},"bytes_read":3158,"user_id":"","duration":5.559598718,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795140.8299725,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39338","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":3.50207128,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779795143.8709395,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39352","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":4.93743362,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795146.1188576,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"45858","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3163"]}},"bytes_read":3163,"user_id":"","duration":5.024127274,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779795147.2357643,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52644","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":3.363410596,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795149.3523803,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"45872","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":3.224080068,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779795152.00586,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52646","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.768918979,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779795153.95796,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"45884","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Content-Length":["164"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":164,"user_id":"","duration":4.604162808,"size":131,"status":401,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"],"Server":["Caddy"]}} +{"level":"error","ts":1779795156.677482,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52008","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":4.670244975,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779795157.445929,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"33162","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.486027838,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795161.6324303,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"41656","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":4.951885716,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795161.942256,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"33166","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.494893698,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795165.041685,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35584","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["606"],"Accept":["application/json"]}},"bytes_read":606,"user_id":"","duration":3.097841972,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779795166.2861307,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41448","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.650669438,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795169.2369056,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41454","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":2.942386725,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795169.6883302,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"41656","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":4.644557337,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795172.0596192,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41464","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.457211323,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"error","ts":1779795172.2056735,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35598","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["2863"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2863,"user_id":"","duration":4.409986286,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"Server":["Caddy"]}} +{"level":"error","ts":1779795174.9612741,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50348","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["650"],"Accept":["application/json"]}},"bytes_read":650,"user_id":"","duration":2.893221674,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795175.150927,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"40604","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":2.938168476,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795179.802963,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"37198","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Type":["application/json"]}},"bytes_read":76,"user_id":"","duration":4.838671365,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795179.9652987,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"40614","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.553826407,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795183.0161989,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"44214","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.043462195,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795189.2662072,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"37198","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":6.247884948,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795197.5174384,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38602","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3159"]}},"bytes_read":3159,"user_id":"","duration":5.681361829,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795200.448709,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38612","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":4.841498841,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795205.1041641,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"49008","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":4.654287531,"size":131,"status":401,"resp_headers":{"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795205.4609365,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"50112","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3163"]}},"bytes_read":3163,"user_id":"","duration":6.082676226,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795208.3647637,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"49016","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":3.259217868,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779795210.360414,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"50122","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":4.888634854,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795213.3632731,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34988","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.997170351,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779795216.6355605,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"46474","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":6.273719223,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795216.6585078,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35000","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.29339157,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795219.1353018,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"36124","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":2.49819983,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795220.9338028,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"41956","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":4.271626452,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795224.0151494,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"36136","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":4.87799097,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795227.3776674,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"36152","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":3.360593333,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795227.4885519,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"37186","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["3006"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3006,"user_id":"","duration":6.551949905,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779795228.6292303,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34380","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.028724362,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795230.389081,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"47906","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":4.904375392,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779795233.718261,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34386","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.823449021,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795236.1675901,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"36472","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2863"],"Accept":["application/json"]}},"bytes_read":2863,"user_id":"","duration":5.775256189,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795236.806278,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34398","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.079912441,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795239.6219413,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"47932","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.445514881,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795241.9007049,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"44004","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.091270234,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795246.216588,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"47934","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2863"],"Accept":["application/json"]}},"bytes_read":2863,"user_id":"","duration":6.332204905,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795249.8956292,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"39174","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.670141814,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795256.309901,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"34108","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":6.411373616,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795256.3184714,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"57342","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["3140"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3140,"user_id":"","duration":4.389205215,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795261.690845,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46478","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":5.362237878,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795266.8616915,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46488","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":5.169411472,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795271.3122497,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"47356","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3161"]}},"bytes_read":3161,"user_id":"","duration":4.888633725,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795271.9421751,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53736","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":5.078446252,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779795276.1127398,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"47364","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["674"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":674,"user_id":"","duration":4.790390367,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795276.6978238,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53738","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":4.753879763,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795279.846078,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58008","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["604"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":604,"user_id":"","duration":3.146470931,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795280.8025877,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"49106","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":4.687708593,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795283.6893415,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"49116","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["619"],"Accept":["application/json"]}},"bytes_read":619,"user_id":"","duration":4.779605373,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795284.6696322,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"58152","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.715016381,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795288.7913697,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43268","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":5.830431797,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779795289.697955,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"45456","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":6.006928539,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779795297.912078,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43274","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":9.111346781,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795299.1360936,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"45470","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":9.436867323,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795309.112533,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52042","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":10.929640916,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779795310.1158292,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"43888","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept":["*/*"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":10.97673989,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795316.7093868,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"59614","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["650"],"Accept":["application/json"]}},"bytes_read":650,"user_id":"","duration":9.514517744,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795318.9408891,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37362","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":10.748399972,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795321.9011576,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"40914","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":76,"user_id":"","duration":5.18915176,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795329.4670904,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35292","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":10.5176428,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795341.015629,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53638","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":11.281061209,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795344.299483,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35830","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3146"]}},"bytes_read":3146,"user_id":"","duration":8.438466178,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795344.7604954,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"41582","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":5.603897679,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795347.3903759,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52538","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["671"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":671,"user_id":"","duration":3.081527425,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795351.06579,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"52082","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":6.302595029,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779795353.5054135,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"45738","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":6.113480609,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795358.4610822,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"45746","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":4.953961472,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795363.2457268,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58366","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.783408647,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795367.617745,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58372","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":4.370460971,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795367.618426,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"51944","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3158"]}},"bytes_read":3158,"user_id":"","duration":4.52297896,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795368.0889158,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"50984","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":2.377518849,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795369.8751965,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"40372","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["76"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":4.172734364,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795372.603756,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"51000","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Content-Length":["164"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":164,"user_id":"","duration":4.512878912,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795374.6013484,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39660","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.723232245,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795375.8484926,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"51004","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.243165333,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795377.9889357,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39666","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.379068902,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779795380.4982324,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53514","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.647898649,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795381.7924483,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47298","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["*/*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.532244163,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795382.384156,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.142316137,"size":1385,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779795383.0540113,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54588","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.798982763,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795383.3456206,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47264","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.104945458,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795383.6051025,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53526","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":3.105168397,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779795383.9702463,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47290","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Authorization":[],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":4.714041524,"size":1930,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779795386.4882214,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47310","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.391671359,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795387.2700272,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47298","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"X-Forwarded-Proto":["http"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser"]}},"bytes_read":0,"user_id":"","duration":3.174401171,"size":1385,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795387.4634132,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54602","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":4.401357388,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795388.0917268,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/superuser"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.022786146,"size":1930,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795388.1621373,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47264","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Cache-Control":["no-cache"]}},"bytes_read":0,"user_id":"","duration":4.093271764,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"error","ts":1779795389.5968156,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"36744","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Accept":["*/*"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":5.988508523,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795392.4229357,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"38428","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":4.956011764,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795393.0145304,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.826420322,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795393.558969,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47264","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.373780893,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795393.9422352,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59958","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.508550447,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795394.0544791,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"47256","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.454946974,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795394.9561467,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47310","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways?view=summary","headers":{"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":6.761256567,"size":1924,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779795397.2618027,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59958","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser"]}},"bytes_read":0,"user_id":"","duration":2.495430828,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795397.347692,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47264","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.769383305,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795396.4619796,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"47262","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":4.290294786,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795396.6367652,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47310","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Authorization":[],"Referer":["http://localhost:5173/superuser"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":3.542240451,"size":1385,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795396.68893,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":5.545957652,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795399.790964,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47264","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.319304291,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795402.3787596,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.678171458,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779795402.5273376,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47310","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.315070114,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795403.200373,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"34802","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2863"],"Accept":["application/json"]}},"bytes_read":2863,"user_id":"","duration":6.471664137,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795403.5264893,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47264","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.718207113,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779795405.7704666,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47310","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.216472328,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795406.192311,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"55454","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":2.98356754,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795407.2124057,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47264","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser"],"X-Forwarded-Proto":["http"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.659729643,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795408.3011603,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.91086201,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779795408.9853506,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56146","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3159"]}},"bytes_read":3159,"user_id":"","duration":6.427733998,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795411.3533964,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47310","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":2.407229102,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795412.311053,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47264","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":3.370554617,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795413.374181,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"55924","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":7.177971436,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795413.9486482,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.633504266,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779795414.5108848,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44464","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["671"],"Accept":["application/json"]}},"bytes_read":671,"user_id":"","duration":5.514090991,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779795414.80578,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59958","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways?view=summary","headers":{"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":4.923773674,"size":2255,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779795416.477128,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34198","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.241908427,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795417.3830345,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47310","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.162769213,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795418.4352837,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47264","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser"],"Sec-Gpc":["1"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept":["*/*"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.217620327,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795419.1896622,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":5.229895914,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795420.2376251,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47298","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/superuser/system/status","headers":{"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":33.937913359,"size":9147,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779795420.9464056,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"57656","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":6.433595991,"size":131,"status":401,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795421.6523113,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47310","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.06092514,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795422.796872,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47264","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.221665636,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795424.4847243,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":5.281204262,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795424.5793576,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"57658","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":3.63124203,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795425.5428133,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47310","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.51158279,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795426.5953984,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47264","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.607604884,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795426.8503497,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42648","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.185324358,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779795427.653866,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/superuser"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.072588978,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779795428.3840034,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"58580","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3164"]}},"bytes_read":3164,"user_id":"","duration":4.899042793,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795429.9411645,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42662","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.089351034,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779795430.6265929,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47310","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Referer":["http://localhost:5173/superuser"]}},"bytes_read":0,"user_id":"","duration":2.28554915,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795431.3826501,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"58594","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":2.988042959,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779795431.7290688,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47264","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.404645955,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795433.1472087,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":5.480813944,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795435.1406186,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"32872","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Connection":["keep-alive"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.196652829,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795436.1909435,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42506","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":4.806737634,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795436.4295633,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47310","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.741702798,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795438.714234,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.554131632,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795438.937868,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47264","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":5.266606226,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795439.5663934,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52796","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.616628653,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795439.7149124,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42508","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.522354566,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795441.9220564,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47310","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.909513668,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795442.3758636,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52812","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":2.80141362,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795443.7999609,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47264","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":4.803097601,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795444.0026083,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42516","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.286135643,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795444.9947557,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/superuser"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":6.266099794,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795446.3165655,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47264","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Cache-Control":["no-cache"]}},"bytes_read":0,"user_id":"","duration":1.98103083,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795446.778282,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47298","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Referer":["http://localhost:5173/superuser"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":2.427365368,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795447.4392784,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47310","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.100551233,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795448.3257945,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"50866","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":4.321575661,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795448.5894902,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35070","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":5.943575369,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795450.4280457,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.421883426,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779795451.8824472,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35082","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.282993492,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795451.893444,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47298","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.197128707,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795453.0262136,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47310","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser"],"Sec-Gpc":["1"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.345894874,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795453.4425597,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"48818","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["76"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.113125395,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779795452.6538532,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34198","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways?view=summary","headers":{"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.021898847,"size":2256,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795453.4378362,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":4.878249078,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795455.1484802,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47310","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":1.96313185,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795455.328615,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"50948","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":5.334837846,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795456.2852354,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34198","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":3.10066597,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795456.3676229,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"45604","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["2863"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2863,"user_id":"","duration":4.814040398,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795460.0348916,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"45620","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.659673007,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795460.100684,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47264","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/superuser/system/status","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":11.470228064,"size":9126,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795460.630393,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34198","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser"]}},"bytes_read":0,"user_id":"","duration":2.112146372,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795461.103091,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/superuser"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":7.653060684,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779795461.7333264,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47310","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":3.215077297,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795466.3085651,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"40832","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":6.010361684,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795466.3928585,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/superuser"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.275422699,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795466.545062,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34198","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.689545176,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795469.537598,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47310","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.682708969,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795469.566066,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"40838","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.249858296,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795471.6065643,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34198","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":2.408048704,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795471.9863017,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.582631909,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795472.596477,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"45618","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3154"],"Accept":["application/json"]}},"bytes_read":3154,"user_id":"","duration":5.229902428,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795472.7173886,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47310","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Authorization":[],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.155920612,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795474.0662165,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"60336","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":4.496789998,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795474.06951,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47298","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways?view=summary","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.000825601,"size":2248,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779795475.5861335,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"51574","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":2.981647096,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795475.7196102,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34198","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":3.207819274,"size":1385,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795475.8878777,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47264","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/superuser/system/status","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.819353079,"size":9120,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795475.9437156,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59958","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=2","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/admin"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":3.43071106,"size":413,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795477.0139148,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47310","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=1","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Authorization":[],"Referer":["http://localhost:5173/admin"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":4.288116498,"size":413,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795477.251989,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Referer":["http://localhost:5173/superuser"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Authorization":[],"X-Real-Ip":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":4.963949738,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795479.8212547,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34198","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=4","headers":{"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":4.091931043,"size":403,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795479.822555,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47298","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=3","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Referer":["http://localhost:5173/admin"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.744341489,"size":415,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795479.9802191,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"51576","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":4.392810912,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"]}} +{"level":"info","ts":1779795480.0867317,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47264","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=6","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":4.190659901,"size":414,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795480.1354356,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59958","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=5","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin?departmentIds=2,1,3,4,6,5,7,14,13,84,12&dateFrom=2026-05-26&dateTo=2026-05-26"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.182991602,"size":415,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795480.147272,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin?departmentIds=2,1,3,4,6,5,7,14,13,84,12&dateFrom=2026-05-26&dateTo=2026-05-26"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":2.887207398,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795481.4788797,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47310","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=7","headers":{"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/admin?departmentIds=2,1,3,4,6,5,7,14,13,84,12&dateFrom=2026-05-26&dateTo=2026-05-26"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":4.456265821,"size":406,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795480.989086,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34198","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=14","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin?departmentIds=2,1,3,4,6,5,7,14,13,84,12&dateFrom=2026-05-26&dateTo=2026-05-26"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.081469583,"size":413,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795480.9902654,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"55598","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":2.924190216,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795481.5011535,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47298","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=13","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin?departmentIds=2,1,3,4,6,5,7,14,13,84,12&dateFrom=2026-05-26&dateTo=2026-05-26"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.586573515,"size":409,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795482.0036974,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59874","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=84","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Referer":["http://localhost:5173/admin?departmentIds=2,1,3,4,6,5,7,14,13,84,12&dateFrom=2026-05-26&dateTo=2026-05-26"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.086646236,"size":414,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795482.2036316,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47264","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=12","headers":{"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/admin?departmentIds=2,1,3,4,6,5,7,14,13,84,12&dateFrom=2026-05-26&dateTo=2026-05-26"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.023881717,"size":412,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795483.8473444,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Referer":["http://localhost:5173/admin/12/"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.11615548,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795483.8788488,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":2.103737817,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795484.9439173,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.169666818,"size":1385,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795485.5574481,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59888","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=2&date_to=2026-05-26","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/admin/84?departmentIds=84&dateFrom=2026-05-26&dateTo=2026-05-26"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.520443717,"size":387,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795486.547577,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":4.818332931,"size":1932,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"error","ts":1779795487.1260555,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"55614","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":6.134244104,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795487.747666,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34198","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/outside-hours-trend?department_ids=2,1,3,4,6,5,7,14,13,84,12&date=2026-05-26&date_to=2026-05-26","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/admin/84?departmentIds=84&dateFrom=2026-05-26&dateTo=2026-05-26"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":6.742527418,"size":394,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795488.7686455,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Referer":["http://localhost:5173/admin/12/"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":3.816679318,"size":1385,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779795489.598521,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"X-Release-Channel":["stable"],"Cookie":[],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":2.959015911,"size":61,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795489.8627007,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47310","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/weather?ids=1,2,3,4,5,6,7,12,13,14,84&date_from=2026-05-26&date_to=2026-05-26","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/84?departmentIds=84&dateFrom=2026-05-26&dateTo=2026-05-26"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":10.292275139,"size":326,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795489.9735231,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.334846209,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795490.161018,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Referer":["http://localhost:5173/admin/12/"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Release-Channel":["stable"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":3.531153971,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795490.2916706,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35434","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3163"],"Accept":["application/json"]}},"bytes_read":3163,"user_id":"","duration":6.117519403,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795490.4710522,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"55618","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["604"],"Accept":["application/json"]}},"bytes_read":604,"user_id":"","duration":3.343472439,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795491.1786609,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.539368649,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795491.3555975,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.723741979,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779795493.158834,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"38954","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":2.856604792,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795493.3390288,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/self-serve/enabled?id=12","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.561568087,"size":64,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795493.5781407,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.409857155,"size":1385,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779795495.2073326,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/weather?ids=12&date_from=2026-05-26&date_to=2026-05-26","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":5.224862523,"size":233,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795495.217859,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/overview?department_ids=12&date=2026-05-26&date_to=2026-05-26","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.609863496,"size":579,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795495.3244123,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/get?id=12&date=2026-05-26","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12?departmentIds=12&dateFrom=2026-05-26&dateTo=2026-05-26"]}},"bytes_read":0,"user_id":"","duration":4.136656451,"size":154,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795495.802953,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/admin/12?departmentIds=12&dateFrom=2026-05-26&dateTo=2026-05-26"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.455670615,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795496.8498883,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"44516","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":6.376025361,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779795497.2203367,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/get?id=12&date=2026-05-25","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12?departmentIds=12&dateFrom=2026-05-26&dateTo=2026-05-26"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.856957042,"size":154,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795497.5233808,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12?departmentIds=12&dateFrom=2026-05-26&dateTo=2026-05-26"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.937380078,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795497.595194,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"38964","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["164"],"Accept":["application/json"]}},"bytes_read":164,"user_id":"","duration":4.434579408,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795498.9591308,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59958","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/overview?department_ids=2,1,3,4,6,5,7,14,13,84,12&date=2026-05-26&date_to=2026-05-26","headers":{"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin?departmentIds=2,1,3,4,6,5,7,14,13,84,12&dateFrom=2026-05-26&dateTo=2026-05-26"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":20.730976318,"size":674,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795499.203316,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/admin/12?departmentIds=12&dateFrom=2026-05-26&dateTo=2026-05-26"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.462671318,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795499.8260002,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50044","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["3006"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3006,"user_id":"","duration":4.350200148,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795500.0139837,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Referer":["http://localhost:5173/admin/12?departmentIds=12&dateFrom=2026-05-26&dateTo=2026-05-26"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.168297881,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795500.3390074,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/admin/12?departmentIds=12&dateFrom=2026-05-26&dateTo=2026-05-26"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":4.575649594,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795500.3973837,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"56364","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["619"],"Accept":["application/json"]}},"bytes_read":619,"user_id":"","duration":2.800438128,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795501.0785944,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12?departmentIds=12&dateFrom=2026-05-26&dateTo=2026-05-26"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.315319395,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795501.1608386,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":3.620195279,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795502.464897,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.443225223,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795502.8090467,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44914","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":2.973655204,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795503.1142578,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.899584759,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795504.6165442,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"56370","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.217537617,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795504.9878702,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":3.811968342,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795505.165799,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"]}},"bytes_read":0,"user_id":"","duration":4.809232409,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795506.3076978,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":5.21915372,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795506.6720722,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"]}},"bytes_read":0,"user_id":"","duration":3.561282361,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795507.109748,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"Authorization":[],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":3.984722881,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795507.8425171,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"56384","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":3.224542459,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795508.5762928,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44928","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":5.505102149,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795508.9732618,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.969178961,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795508.620974,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.335190429,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795509.126799,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.57057453,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795509.9510493,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35406","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.258474217,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795510.2459307,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":3.72827216,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795510.3495722,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":5.920712224,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779795510.8297243,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/selfserve/studio/graph?department=12","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Authorization":[],"Cookie":[],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":15.43050438,"size":71817,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779795511.1497319,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"46182","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":5.196761805,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795511.491248,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.393826149,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795513.8629532,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Pragma":["no-cache"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.001628525,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795513.8679736,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.235033583,"size":185,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795514.4087257,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Forwarded-Host":["localhost"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":2.510891339,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795514.8260396,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"46186","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":4.871836041,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795515.0877407,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-Proto":["http"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.224551503,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795515.9813101,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.621977091,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795517.2050714,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54672","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":6.052017532,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795517.275536,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":5.413326095,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795518.5711997,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"PUT","host":"localhost","uri":"/department/selfserve/studio/layout","headers":{"Content-Type":["application/json"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Forwarded-Port":["80"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Origin":["http://localhost:5173"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Content-Length":["2759"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Proto":["http"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":2759,"user_id":"","duration":4.698974974,"size":595,"status":200,"resp_headers":{"Access-Control-Allow-Credentials":["true"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number, X-Release-Trace, X-Release-Channel, X-Frontend-Version, Cache-Control, Pragma, *"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, PATCH, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Access-Control-Allow-Origin":["http://localhost:5173"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795519.977327,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.693209495,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795520.1916163,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54712","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":2.978767507,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795520.4760664,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.758253508,"size":61,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795521.0261202,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.830225619,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795521.1170838,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":7.232393166,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795521.6380029,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.645475313,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795522.877227,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.298484232,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795524.9752455,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":2.402845111,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795526.2426322,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":3.709616623,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795526.5153248,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Proto":["http"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":5.384803838,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795526.831921,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54724","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":6.378719827,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795527.1659648,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":4.275191533,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795527.2950928,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.645947594,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779795529.4153352,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"40698","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":2.575667021,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779795531.0169137,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":3.140970846,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795531.2858725,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40538","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3157"]}},"bytes_read":3157,"user_id":"","duration":4.430270852,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795531.3525238,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":3.476148134,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795531.4676914,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.938491819,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795532.3097894,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.385996767,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795532.6947842,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":5.385652245,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779795534.2754662,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"55736","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":4.857777187,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795534.403007,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40542","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":3.106952802,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795536.004726,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":2.747076498,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779795536.3036315,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.080987109,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795536.4494252,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.226849537,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795536.602548,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Authorization":[],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":5.122632306,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795536.0354757,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.23619414,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779795537.043927,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40548","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":4.546611421,"size":131,"status":401,"resp_headers":{"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795539.4124513,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34412","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":2.366983275,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795539.855605,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.150135438,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795540.089244,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":3.439677749,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795541.7284465,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.682109219,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779795542.0699186,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.382903279,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795542.5358841,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.886310762,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795543.9569945,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34428","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.542746413,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795544.4086974,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Pragma":["no-cache"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.423822613,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795544.4745183,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.607351886,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795545.1084902,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/department/selfserve/studio/simulate","headers":{"Cookie":[],"Sec-Fetch-Mode":["cors"],"Content-Length":["336"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Origin":["http://localhost:5173"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Content-Type":["application/json"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":336,"user_id":"","duration":12.82103454,"size":8034,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Methods":["GET, POST, PUT, PATCH, DELETE, OPTIONS"],"Content-Encoding":["gzip"],"Content-Type":["application/json; charset=utf-8"],"Access-Control-Allow-Origin":["http://localhost:5173"],"Access-Control-Allow-Credentials":["true"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number, X-Release-Trace, X-Release-Channel, X-Frontend-Version, Cache-Control, Pragma, *"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779795545.3458278,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.802198025,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795545.6609476,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":3.584024077,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795546.8624904,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58564","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":2.904269792,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795547.009574,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.270203545,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795547.6438956,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.22686078,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795548.4712915,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53186","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3163"]}},"bytes_read":3163,"user_id":"","duration":4.077966655,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779795548.7950678,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=0&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["no-cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["image"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":3.661572182,"size":1315963,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["image/png"],"Content-Length":["1315963"]}} +{"level":"info","ts":1779795549.585155,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.098943875,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795549.8751142,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.033353725,"size":61,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795550.7824302,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.130571605,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795551.221546,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"33760","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":4.356196873,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795551.3251703,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.996912444,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795551.933943,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53202","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":3.451745658,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795552.5030544,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":5.476872388,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795553.100447,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":4.286241774,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779795554.5846055,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=1&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Real-Ip":["172.20.0.1"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["image"],"Sec-Fetch-Mode":["no-cors"]}},"bytes_read":0,"user_id":"","duration":3.472662727,"size":1318636,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["image/png"],"Content-Length":["1318636"]}} +{"level":"info","ts":1779795555.0784261,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Authorization":[],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":5.482357601,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795555.2069867,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":2.517990864,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795556.2458303,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.587791553,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795556.4923217,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53214","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":4.556824542,"size":131,"status":401,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"],"Server":["Caddy"]}} +{"level":"error","ts":1779795557.061708,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58570","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":5.837514946,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795557.7628531,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.249699903,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779795558.8471398,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"Cookie":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":5.731558351,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795559.5062354,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"49612","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.012319895,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795560.7117722,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44070","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["650"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":650,"user_id":"","duration":3.641450237,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"]}} +{"level":"info","ts":1779795560.7586608,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":2.726470717,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795561.6724634,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":6.583959703,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795561.7758174,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":3.787288777,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795563.1485264,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Proto":["http"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":4.280088741,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795563.2848778,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":5.510636066,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779795564.2246494,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"49628","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.715341771,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779795565.9170074,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44072","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.943326935,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795565.164097,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.600428003,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795564.6453004,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"X-Release-Channel":["stable"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":3.209562971,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795565.188813,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":5.395156827,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795566.275223,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.868128523,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795566.9334655,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.49512181,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795567.2262928,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"48364","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":4.890176757,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795567.3000934,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"47746","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.265072794,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795568.9578123,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.139511784,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795570.092612,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.307647963,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795570.6921213,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.49094621,"size":185,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795570.749853,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.797652599,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795571.9439692,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"53542","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":4.714844007,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795573.0906196,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":6.80364604,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795574.2179828,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"53550","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":6.914707796,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779795574.4873002,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Accept":["*/*"],"Cookie":[],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":2.368709096,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795574.7642124,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.612975015,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795575.3599057,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":3.23883373,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795575.4305747,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.309735527,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795576.0171971,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"52262","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["2863"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2863,"user_id":"","duration":4.070128779,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795576.1009347,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.396247002,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795578.6137984,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.512116717,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795579.9060571,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.411037522,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795580.1082764,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"52274","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":4.083388262,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795580.4580863,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.488826885,"size":61,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795580.9546063,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":4.844537994,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795581.0041983,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.558011558,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795583.0671513,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.620960011,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795584.938897,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"52284","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.568963444,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779795585.0066597,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":2.181457384,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795585.674647,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":7.048146435,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795585.974678,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":5.009612466,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795586.1040857,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.312086819,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795586.8548086,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.772671574,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795588.0242639,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"44682","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.076074968,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795589.0036116,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39416","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3133"]}},"bytes_read":3133,"user_id":"","duration":4.675087949,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795590.8347087,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.6553698,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795591.1345015,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Channel":["stable"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":5.442067154,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795591.1388097,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Port":["80"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":5.151184362,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795591.4728723,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.323867799,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795591.7521162,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.604583182,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795592.3548584,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39418","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["671"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":671,"user_id":"","duration":3.341792799,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"error","ts":1779795592.4394088,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"47202","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Content-Length":["76"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":4.411650167,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795593.77781,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.530269215,"size":185,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779795593.9841392,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.741569713,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795594.3020673,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":2.68510337,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795594.5735433,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.004930868,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795594.722383,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":3.153769896,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795595.141993,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46218","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":4.693860747,"size":131,"status":401,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["401 Unauthorized"]}} +{"level":"error","ts":1779795598.7188008,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46224","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":3.575072659,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795599.2496884,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.460678766,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795599.4124262,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.468052644,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779795599.7067604,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":5.711012532,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795600.512262,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.601344449,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795602.561068,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":5.649993824,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795603.4201605,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46236","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.700033529,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795604.3166256,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.051262812,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795604.3633437,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":2.115763976,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795604.7882798,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":2.508289797,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795605.184554,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.465582127,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795605.4486535,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Authorization":[],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":3.201013269,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795606.0341926,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.45622376,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795606.716359,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58842","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.294348489,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795606.7279365,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"32932","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3161"]}},"bytes_read":3161,"user_id":"","duration":4.168831064,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795609.1494594,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"32938","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":2.408930752,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795610.5040922,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.413647983,"size":61,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795610.5074084,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Authorization":[],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":5.311233468,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795610.7814708,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Channel":["stable"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.193341898,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795610.8893058,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":3.300201937,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795610.9177058,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"37780","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"User-Agent":["node"],"Accept-Language":["*"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":4.198469842,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795611.0254426,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":6.694073782,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795611.9794412,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.361964697,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795613.6678739,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"32942","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":4.515789196,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795615.4421997,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52482","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.521830862,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795615.531735,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":2.569271689,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795616.0161915,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Channel":["stable"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.495862623,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795616.0817144,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.043734505,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795616.6912398,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.775066736,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795616.7411144,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"60664","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["619"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":619,"user_id":"","duration":3.07178868,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795617.996519,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.081600595,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795618.5448768,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52488","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.092352101,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795621.1912909,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":5.098950578,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795621.294324,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":2.523931116,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795621.4318335,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":5.404663072,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795621.1996515,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"60672","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":6.347697622,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795621.2679737,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.389265143,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795621.2778583,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52502","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.36016078,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795621.4469867,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.567977335,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795624.3232715,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42684","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":3.122116856,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795624.3624582,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.149012045,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795624.5555072,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":5.239233578,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795624.917887,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.363924753,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795625.173141,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":2.965313584,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795625.3295195,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.118612177,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795625.7390547,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40104","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":4.453038434,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795629.7038558,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":2.158461798,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795634.4803097,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"37996","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":10.154177667,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"error","ts":1779795634.4806967,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"38004","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":8.738901689,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795635.163972,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":7.619261203,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795635.2757502,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Authorization":[],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":7.730918399,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795635.49541,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Port":["80"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":2.612060945,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795636.4764752,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":11.910505391,"size":185,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795636.7853327,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":11.854718649,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779795637.002842,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Accept":["*/*"],"Cache-Control":["no-cache"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":4.120491833,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795639.1709666,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"33786","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.68764308,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779795640.0899518,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.912045128,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795640.2456706,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.029691152,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795640.2860608,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":4.989363038,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795641.65283,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":5.164218535,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795642.3166335,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.518064895,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795643.0541382,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":4.83841573,"size":61,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795643.7324,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"38142","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":4.553503379,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795643.8638554,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.760950211,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795644.131802,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.828165368,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795647.9081047,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.007615325,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795648.1281023,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40140","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3140"]}},"bytes_read":3140,"user_id":"","duration":5.355241532,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779795648.4687917,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":6.139202452,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795648.572594,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":4.421093999,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795648.6055365,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.030048488,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795648.7223344,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"38154","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.719758569,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795649.0977867,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":7.431364705,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795649.7038229,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.694597076,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795654.4034402,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53726","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":8.175436922,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795654.4034622,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"58386","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":7.583066366,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795654.5309143,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.197050177,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795655.105547,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":8.100177627,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795655.3265858,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":8.319956369,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795656.5520537,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":9.348157437,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795656.754733,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":10.185793093,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779795658.2776551,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53730","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":3.872279896,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795658.5936728,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"58150","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":4.184948875,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795658.768077,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":3.65159271,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795659.1590564,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Release-Channel":["stable"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.816013155,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795660.5477898,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.874921112,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795661.4897733,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39364","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":3.210507785,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795661.7418063,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":5.179245539,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795662.3062825,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Port":["80"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.539236763,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795662.723324,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.942491695,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795664.986607,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":1.969175881,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795665.0170062,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.836786414,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795665.4170592,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Pragma":["no-cache"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":2.404293736,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795666.143655,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.126987156,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795666.2027116,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39368","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.711535873,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795666.8990366,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":5.144351469,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795667.72409,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":5.404414847,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795669.3805726,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.344697748,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795669.6002839,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35978","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.396147018,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"]}} +{"level":"info","ts":1779795670.7424035,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":2.394587378,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795671.134318,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":2.788847483,"size":61,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795671.3693948,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Channel":["stable"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.023488354,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795672.3121262,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.40142655,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795672.9505663,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.215923947,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779795673.2974215,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.89274032,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795674.5599504,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"44802","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":4.956514104,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795675.4221437,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37492","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3163"]}},"bytes_read":3163,"user_id":"","duration":4.799802085,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795677.3894525,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":5.066285096,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795677.4749641,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.798219195,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795677.554525,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Cookie":[],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.874563808,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795676.588476,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Cookie":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.516686705,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795677.1302657,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":5.341520856,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795678.0876112,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37494","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":4.54180019,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795679.0858822,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35988","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["3006"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3006,"user_id":"","duration":6.411150265,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779795679.3712862,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":2.71760598,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795679.7793117,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.160382699,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795680.865118,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":5.352100828,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795681.4246535,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.823996876,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779795682.123814,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"51892","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["650"],"Accept":["application/json"]}},"bytes_read":650,"user_id":"","duration":3.029448899,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795682.563697,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.416061424,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795682.7017856,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"34820","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":4.612126512,"size":131,"status":401,"resp_headers":{"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795683.3259864,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=1&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["no-cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"Sec-Fetch-Dest":["image"]}},"bytes_read":0,"user_id":"","duration":4.895201782,"size":1318636,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["image/png"],"Content-Length":["1318636"]}} +{"level":"info","ts":1779795684.4727018,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.474271103,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795685.637067,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.689301361,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795685.721902,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"34830","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.018283977,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795686.1483862,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.27136158,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795686.942354,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.50765171,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779795687.1252568,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"51900","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.738031777,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795688.806744,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":6.226861832,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795689.7776332,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":1.983300857,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795690.1168633,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41542","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":2.981392196,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795690.9053469,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":3.111683756,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795691.5256035,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"43682","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":5.802116681,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779795692.1996176,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.246701458,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795692.5533803,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":6.393701125,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795693.5027068,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Host":["localhost"],"Authorization":[],"Cookie":[],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.67592765,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795694.6917384,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"43686","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":3.164628045,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795695.1588316,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":2.027156233,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795695.1592617,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"Accept":["*/*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":2.029423715,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795696.7784011,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Dest":["empty"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":3.646719208,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795696.9538088,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"52280","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":6.834057041,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779795697.602692,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.080682043,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795697.6305559,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":5.418028408,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795697.642472,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":5.077322622,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795699.761572,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"55092","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.065850384,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779795700.757088,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.277449701,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795701.3262553,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.85022186,"size":61,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795701.5788093,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.102470436,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795701.9664717,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":3.487320399,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795702.7310605,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.078915951,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795704.3206515,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"59854","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["2863"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2863,"user_id":"","duration":4.556008268,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795704.5748158,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":6.933981353,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795705.7967541,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":1.966229691,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795705.1286795,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":3.208227165,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795705.3225708,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":3.402435294,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795705.547544,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"47626","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["653"],"Accept":["application/json"]}},"bytes_read":653,"user_id":"","duration":3.127096145,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795705.9317575,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.0988215,"size":185,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795708.0411935,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.362285505,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795709.7468052,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":2.495500945,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795710.1151824,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56594","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3138"]}},"bytes_read":3138,"user_id":"","duration":4.870985473,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795710.4781222,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"47628","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.66911151,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795710.4924679,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.243685916,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795710.637287,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.387537134,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795711.1513429,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":5.207997783,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795713.3609886,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56604","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["671"],"Accept":["application/json"]}},"bytes_read":671,"user_id":"","duration":3.237587732,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779795713.6255913,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"47642","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.139706584,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795713.7927496,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.73249249,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795715.3261466,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.73036493,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795715.7104597,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":3.118786392,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795715.8464103,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Authorization":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":3.253616242,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795716.5483348,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.385183909,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795717.911638,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34680","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":4.549150965,"size":131,"status":401,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["401 Unauthorized"]}} +{"level":"error","ts":1779795718.2621346,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"53836","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":4.633488822,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795718.966796,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.162780983,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779795720.5808845,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":3.16852148,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795720.782997,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.369223956,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795720.9546683,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34694","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":3.038903118,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795721.7834058,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.323411299,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795723.1264255,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":6.56848286,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795724.5644798,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.58411471,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795724.8212414,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":2.080743335,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795725.4103258,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":2.6260307,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795726.110978,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.360250733,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795726.1753774,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34702","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":5.218770259,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795728.061508,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.313670629,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795728.3124406,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":5.173496346,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795729.437227,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34486","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.26036411,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795730.1313262,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.554880793,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795730.691283,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":2.570748361,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795731.1930542,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.107713664,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795731.3341165,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.246949529,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795732.4565372,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":4.851824102,"size":61,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795733.3804793,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.05303896,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795734.4964025,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"39340","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.056004572,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795732.8986542,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"60762","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3164"]}},"bytes_read":3164,"user_id":"","duration":4.497958303,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795733.610091,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Authorization":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.355809841,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795734.2800815,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.698617768,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795734.685551,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":3.155567486,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795735.885336,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.354341888,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795735.8884451,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"40658","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["674"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":674,"user_id":"","duration":2.979049991,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795736.7420363,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":5.212102395,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795738.4570608,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41562","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3006"],"Accept":["application/json"]}},"bytes_read":3006,"user_id":"","duration":5.899889503,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779795738.9699352,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-Host":["localhost"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.346572369,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795739.705637,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":2.786711151,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795739.9753966,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.100837776,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795740.7677612,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"40668","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":4.877320167,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795741.3281517,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Release-Channel":["stable"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":4.453269917,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795741.571988,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41578","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.090555187,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779795742.4567704,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":5.582289873,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795744.2685897,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35052","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["619"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":619,"user_id":"","duration":3.499375704,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"]}} +{"level":"info","ts":1779795744.5296147,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.547360568,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795744.8562953,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.601695946,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795745.3719423,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.168787233,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795746.180166,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58114","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.340475321,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795746.4834263,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.006893361,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795747.0004008,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Authorization":[],"Cookie":[],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":4.797052934,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795748.922427,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35066","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.652379008,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779795749.603365,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58124","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.414097038,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795749.9401062,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.398085433,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795750.3733404,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.794337152,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795750.8759584,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.328834904,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795751.0622518,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.514800122,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795751.8402834,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35070","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":2.915987206,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"]}} +{"level":"info","ts":1779795754.189411,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":6.640712412,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795754.5817385,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"42214","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":4.975547009,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795755.0468276,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["*/*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Pragma":["no-cache"]}},"bytes_read":0,"user_id":"","duration":2.09396107,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795755.2198865,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":2.258765309,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795755.507845,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.547581032,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795756.2740626,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.31366958,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795756.3294926,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":3.369652435,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795757.03321,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"43458","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.18990302,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795759.680043,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.480453963,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795760.772567,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.027541037,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795761.8896306,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.147505507,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795762.109168,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.36771466,"size":61,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795762.244947,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":3.500817362,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795760.9146695,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":7.301753772,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779795761.2158496,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"40750","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":6.088709686,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795763.1637187,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.379902934,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795764.3723717,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":2.19569769,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795765.4595063,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.285827371,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795765.7179334,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Authorization":[],"Cookie":[],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.543641693,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795765.8845103,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"46420","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":4.661091333,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795767.8364577,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":6.909621774,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795768.7485049,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":5.568884175,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795769.4604163,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"60806","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["3158"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3158,"user_id":"","duration":4.757222541,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795769.6494956,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.130398232,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795770.829425,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.311844621,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795770.9109044,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"46432","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.763720928,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795771.415538,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.897103103,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795773.2240148,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"60756","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":3.7540914,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795773.916599,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":6.070056432,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795774.3961978,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.628857736,"size":185,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795774.4414213,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"57202","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.523342423,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795775.4020386,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.556493249,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795775.947705,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.103732353,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795776.088958,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":3.243816635,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795777.889311,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"60762","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":4.663590271,"size":131,"status":401,"resp_headers":{"Status":["401 Unauthorized"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795779.3437037,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"55678","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":4.898851721,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779795779.4329736,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Cookie":[],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.505697729,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795780.2186995,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.033896435,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795780.6189644,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"60766","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":2.728207867,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795781.3504248,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":3.16941666,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795781.4624476,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":7.05458851,"size":185,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795781.8573563,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":3.674208862,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795786.7212448,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43786","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":6.100181252,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795787.685074,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"Accept":["*/*"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":4.142024775,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795788.1489275,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":8.703521113,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795788.227092,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.633333091,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795788.6118324,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":7.139135596,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795788.774844,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":5.197373943,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795789.2378986,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.659012027,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795790.3232632,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43788","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.598890516,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795789.4178715,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":2.452799411,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795790.1945033,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.230314423,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795790.510353,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":3.54643341,"size":61,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795791.6081707,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":4.872505784,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795791.6366036,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":4.267218519,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795791.8326457,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":5.561117329,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795794.128093,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37740","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3151"]}},"bytes_read":3151,"user_id":"","duration":4.643464507,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795794.3457444,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":2.036512339,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795795.0945637,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"46964","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.655498768,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795795.43208,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.131934931,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795796.7828474,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.161219225,"size":185,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795797.4571056,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37752","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["674"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":674,"user_id":"","duration":3.317623583,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795797.7178066,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Authorization":[],"Cookie":[],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.417570312,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795798.6301265,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":6.786473875,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779795799.9846275,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"51322","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["3006"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3006,"user_id":"","duration":4.887198499,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795800.029322,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.385312346,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795800.7949467,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.151193719,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795801.645551,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"56902","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":4.187255225,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"]}} +{"level":"info","ts":1779795802.1533256,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"X-Release-Channel":["stable"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":5.358127043,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795803.0293083,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53138","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["650"],"Accept":["application/json"]}},"bytes_read":650,"user_id":"","duration":3.036156639,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795803.9569325,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":6.202572072,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795804.1767805,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":5.535621483,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795804.9205458,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"56904","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.272750874,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779795806.0450168,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.075166111,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795808.0531094,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":5.887494428,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795808.6578534,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53152","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3006"],"Accept":["application/json"]}},"bytes_read":3006,"user_id":"","duration":5.366053413,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779795809.4992805,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":6.528448798,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795810.9606512,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":6.770204669,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795811.1841297,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"56906","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":6.26066687,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795811.391724,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":7.417167673,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795811.5277772,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.207627892,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795813.6171021,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":4.090062222,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795813.8473887,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38640","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["650"],"Accept":["application/json"]}},"bytes_read":650,"user_id":"","duration":5.179924059,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795813.917641,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.836714507,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795814.0157452,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35358","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":2.830182839,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795815.375388,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":3.968214303,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795815.598282,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Cache-Control":["no-cache"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":2.459186793,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795815.625486,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.432506065,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795816.2663157,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":5.294080659,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795817.2060988,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Cookie":[],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":3.5791955,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795817.3458908,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"38890","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"User-Agent":["node"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":5.405004037,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795817.7139106,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"38892","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":5.604483154,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795817.8021884,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.782047005,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795819.302878,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.819933364,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795821.2622817,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.615177882,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795821.8914592,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.75720084,"size":61,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795823.3637555,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Gpc":["1"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.033648651,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795823.3944116,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35794","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":5.676005982,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795823.6245725,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":7.021486619,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795823.9419274,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":6.109518174,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795824.0585566,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":9.687738153,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779795824.6020815,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.645781891,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795826.531924,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35806","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.12919133,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795827.35768,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":3.720788676,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795828.7118979,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Release-Channel":["stable"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":5.33001681,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795829.0621397,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Authorization":[],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.108724087,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795829.420324,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.350864955,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795829.6453958,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=1&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["image"],"Sec-Fetch-Mode":["no-cors"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":2.882226267,"size":1318636,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Length":["1318636"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["image/png"]}} +{"level":"info","ts":1779795830.1766264,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.807047759,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795830.8713946,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"46138","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["2863"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2863,"user_id":"","duration":4.075613863,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795832.4726155,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.744792806,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795833.4356656,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46324","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3139"]}},"bytes_read":3139,"user_id":"","duration":4.463114038,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779795834.0783975,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"46144","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["653"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":653,"user_id":"","duration":3.198357219,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795834.816184,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.746027133,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795835.0707483,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":5.403882045,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795835.5939674,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=2&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["image"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["no-cors"]}},"bytes_read":0,"user_id":"","duration":3.236594444,"size":1344195,"status":200,"resp_headers":{"Content-Length":["1344195"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["image/png"]}} +{"level":"info","ts":1779795835.7798507,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":6.350074837,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795836.3200011,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.728318962,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795836.702514,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46328","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":3.258086694,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779795837.5035133,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.67744645,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795838.9554677,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Authorization":[],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.872086275,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795839.14013,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"35122","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":5.058752504,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795840.8097105,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.015413217,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795840.9664755,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.358532949,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779795841.377144,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42134","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":4.672640062,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795841.6288335,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":3.693445652,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795841.909808,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.941639033,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795842.2162788,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=0&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["image"],"Sec-Fetch-Mode":["no-cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.250046985,"size":1315963,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["image/png"],"Content-Length":["1315963"]}} +{"level":"info","ts":1779795842.8314455,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/department/selfserve/studio/simulate","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Content-Type":["application/json"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Content-Length":["336"],"Origin":["http://localhost:5173"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":336,"user_id":"","duration":15.923677049,"size":8034,"status":200,"resp_headers":{"Access-Control-Allow-Credentials":["true"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Access-Control-Allow-Origin":["http://localhost:5173"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number, X-Release-Trace, X-Release-Channel, X-Frontend-Version, Cache-Control, Pragma, *"],"Access-Control-Allow-Methods":["GET, POST, PUT, PATCH, DELETE, OPTIONS"]}} +{"level":"error","ts":1779795844.2418344,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42148","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":2.862689607,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795844.64401,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.825754476,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795845.3505533,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.100112626,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795846.040898,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":2.737389798,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795846.4604704,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.206221657,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795846.8625407,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.224121833,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779795845.4385219,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":6.349258716,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795848.170288,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.398349247,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795848.29228,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42162","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":5.936672056,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795849.6001966,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Cookie":[],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.85714419,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795850.0397885,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.820815438,"size":61,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795850.496662,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.506951147,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779795850.6238968,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.171756256,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795850.6671531,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.961922025,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795851.88364,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35594","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.589892058,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795852.6523178,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.462833019,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795854.6990325,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"40080","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3162"]}},"bytes_read":3162,"user_id":"","duration":5.396446393,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779795854.813409,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Proto":["http"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":2.72479461,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795855.7936387,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.750988711,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795855.9902017,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":5.355608769,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795856.154668,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.646336304,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779795856.8130004,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"36726","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":4.925740914,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795856.9229498,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.254768473,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795857.927676,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53776","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":3.219668162,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795860.0432456,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.624861422,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795860.5281565,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.141803483,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795860.6747472,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.288082621,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795861.3585198,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.355294303,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795861.4402382,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41126","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.624183169,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795861.6952682,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":5.527549846,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779795862.5390024,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53780","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["164"],"Accept":["application/json"]}},"bytes_read":164,"user_id":"","duration":4.609978082,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795865.4275725,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53788","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":2.886296768,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795865.4608154,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41138","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":4.012989944,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795865.5039706,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":2.740932989,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795865.9493568,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"]}},"bytes_read":0,"user_id":"","duration":3.238072494,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795866.0850801,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.373094749,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795867.5096722,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":6.139036919,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795868.1929872,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":6.484448932,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795870.0837557,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"48308","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.653978431,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795870.3808513,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35132","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.647616221,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795870.5955496,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":2.482395286,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795871.2362204,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Mode":["cors"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.171498987,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795871.3165774,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.251287315,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795872.5582013,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.034205055,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795873.185514,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"48324","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":3.100103779,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795873.460206,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35148","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.070686946,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795873.4836156,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":5.278187106,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795875.0278983,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=0&dynamic_image_id=1","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["image"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["no-cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.563621377,"size":1253381,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["image/png"],"Content-Length":["1253381"]}} +{"level":"info","ts":1779795873.8890038,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"PUT","host":"localhost","uri":"/department/selfserve/studio/graph","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Origin":["http://localhost:5173"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Accept":["application/json, text/plain, */*"],"Content-Type":["application/json"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"Content-Length":["242"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":242,"user_id":"","duration":16.460481327,"size":71945,"status":200,"resp_headers":{"Access-Control-Allow-Credentials":["true"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number, X-Release-Trace, X-Release-Channel, X-Frontend-Version, Cache-Control, Pragma, *"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, PATCH, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["http://localhost:5173"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779795873.963039,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["*/*"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":2.468818275,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795875.155429,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.652212504,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795875.7190166,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.587656916,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795875.9619713,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.300845586,"size":185,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795876.0802896,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"56224","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":4.799099179,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795876.990289,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.405577478,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"error","ts":1779795877.699611,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"56238","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"]}},"bytes_read":76,"user_id":"","duration":6.144022355,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779795879.1689415,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.272476802,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779795879.624625,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/pos/orders"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.274905556,"size":61,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795880.4038126,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/pos/orders"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":3.567304734,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795880.5153222,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"47002","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["2863"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2863,"user_id":"","duration":4.432208051,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795881.3322403,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/pos/orders"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.333799954,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795881.862091,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?page=1&limit=100&filters=department_id:12&order=created_at:desc","headers":{"Sec-Fetch-Dest":["empty"],"Referer":["http://localhost:5173/admin/12/modules/pos/orders"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Customer-Number":[""],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":7.611124817,"size":3548,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795882.2746422,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/pos/orders"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":6.301065439,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795883.166728,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=2","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.53240946,"size":413,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795883.4066296,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"47006","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":2.883403526,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795884.4549766,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/pos/orders"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.277316316,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795884.856536,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=3","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.51517708,"size":415,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795885.2824516,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=1","headers":{"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"Cookie":[],"Referer":["http://localhost:5173/admin"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.870730767,"size":413,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795885.8828492,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=6","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/departments"]}},"bytes_read":0,"user_id":"","duration":3.599210081,"size":414,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795886.8643265,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=5","headers":{"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12?departmentIds=12&dateFrom=2026-05-26&dateTo=2026-05-26"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.686399697,"size":415,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795886.8873534,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=4","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin?departmentIds=2,1,3,4,6,5,7,14,13,84,12&dateFrom=2026-05-26&dateTo=2026-05-26"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.017130965,"size":403,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795888.3613951,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=7","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":3.898824139,"size":406,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795888.423187,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"38548","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.754281293,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795888.7405007,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=14","headers":{"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Authorization":[],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.875215943,"size":413,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795889.3137572,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=13","headers":{"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.022652101,"size":409,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795889.9567385,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=84","headers":{"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":4.064745712,"size":414,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795890.2240355,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments?id=12","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.349435766,"size":412,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795891.1192296,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"38558","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["653"],"Accept":["application/json"]}},"bytes_read":653,"user_id":"","duration":2.687145384,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779795893.9520414,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=2&date_to=2026-05-26","headers":{"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":4.628790553,"size":387,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795894.0541105,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.822970831,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795894.1044922,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43066","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["3157"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3157,"user_id":"","duration":4.376831673,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795895.131153,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.165860264,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779795895.4866784,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/outside-hours-trend?department_ids=2,1,3,4,6,5,7,14,13,84,12&date=2026-05-26&date_to=2026-05-26","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":6.73804867,"size":394,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795895.552774,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/weather?ids=1,2,3,4,5,6,7,12,13,14,84&date_from=2026-05-26&date_to=2026-05-26","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":7.183562764,"size":305,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779795896.1707647,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"42452","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":5.047413041,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795896.6279855,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"60558","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":2.515103543,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795897.0290709,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.966333184,"size":61,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795898.4106526,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/self-serve/enabled?id=12","headers":{"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.271447741,"size":64,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795899.175827,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/get?id=12&date=2026-05-26","headers":{"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Port":["80"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":3.610926411,"size":154,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795900.2524095,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":6.291190687,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795901.4020865,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/overview?department_ids=12&date=2026-05-26&date_to=2026-05-26","headers":{"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Release-Channel":["stable"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":5.906703714,"size":579,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779795901.5062895,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"60572","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":4.876642655,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795902.3864222,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/get?id=12&date=2026-05-25","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.968699164,"size":154,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795901.9319186,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":2.408440699,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795902.1701868,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/outside-hours-trend?department_ids=2,1,3,4,6,5,7,14,13,84,12&date=2026-05-26&date_to=2026-05-26","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Cookie":[],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":7.021074675,"size":394,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795902.4620242,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54978","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":2.84155811,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795903.5743923,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Channel":["stable"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":5.198420001,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795905.8273077,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.320748582,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795905.8993182,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/bookings-count?department_id=2&date=2026-05-26","headers":{"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.721737433,"size":89,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795906.6583874,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/overview?department_ids=2,1,3,4,6,5,7,14,13,84,12&date=2026-05-26&date_to=2026-05-26","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":21.650155371,"size":674,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795906.9873607,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54990","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.52377198,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779795907.5979736,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=2&date_to=2026-05-26","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.658238722,"size":387,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795907.6016197,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":4.017981426,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795908.4393997,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":2.531365678,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795910.068111,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"55000","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.077756821,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795910.4151123,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=3&date_to=2026-05-26","headers":{"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":4.579706966,"size":387,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795910.7624002,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"56934","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3162"]}},"bytes_read":3162,"user_id":"","duration":4.455642981,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795910.9755187,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/selfserve/studio/graph?department=12","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":13.678493494,"size":71946,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795911.1191394,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/bookings-count?department_id=3&date=2026-05-26","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":3.635596667,"size":89,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795911.1933103,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/bookings-count?department_id=1&date=2026-05-26","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"]}},"bytes_read":0,"user_id":"","duration":3.583191654,"size":89,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795913.3771555,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/outside-hours-trend?department_ids=2,1,3,4,6,5,7,14,13,84,12&date=2026-05-26&date_to=2026-05-26","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":6.710684334,"size":394,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795913.6052766,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54404","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":2.830826202,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795914.0326314,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=1&date_to=2026-05-26","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":6.424834358,"size":384,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795914.4116938,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/bookings-count?department_id=6&date=2026-05-26","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":3.42621755,"size":89,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795914.657522,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/bookings-count?department_id=5&date=2026-05-26","headers":{"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.455558183,"size":89,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795915.0066218,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=6&date_to=2026-05-26","headers":{"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.582406682,"size":384,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795915.5543213,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=5&date_to=2026-05-26","headers":{"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.420793293,"size":386,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795915.7971628,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"44788","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.726523802,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795917.6736066,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/bookings-count?department_id=4&date=2026-05-26","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.631669498,"size":89,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795918.0757165,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=4&date_to=2026-05-26","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Authorization":[],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":4.689677036,"size":386,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795918.1002705,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.675892012,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795918.514441,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/bookings-count?department_id=7&date=2026-05-26","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":3.4993518,"size":89,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795919.1409051,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=7&date_to=2026-05-26","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":4.472174362,"size":387,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795919.1732552,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54420","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":5.566637082,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795919.3683372,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35400","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3006"],"Accept":["application/json"]}},"bytes_read":3006,"user_id":"","duration":4.296013206,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795920.3168316,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=14&date_to=2026-05-26","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.752510708,"size":387,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795921.3431852,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/bookings-count?department_id=14&date=2026-05-26","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.658188197,"size":89,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795921.3488493,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/bookings-count?department_id=13&date=2026-05-26","headers":{"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.239238607,"size":89,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795922.281386,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=13&date_to=2026-05-26","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":4.195238873,"size":386,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795922.3364532,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"59642","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":2.959962493,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795922.8195004,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/bookings-count?department_id=84&date=2026-05-26","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.665019603,"size":89,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795923.3478312,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=84&date_to=2026-05-26","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.822913994,"size":383,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795923.37899,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.019824914,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795923.7059162,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"60026","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":4.530951734,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795924.4647539,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/bookings-count?department_id=12&date=2026-05-26","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.112157671,"size":89,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795926.3527637,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=1&date_to=2026-05-26","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.063131168,"size":384,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795926.4889433,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=12&date_to=2026-05-26","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":6.163335701,"size":383,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795926.600435,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Cookie":[],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":3.773504409,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795927.059073,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"59656","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.460017914,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795928.0780337,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"60042","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":4.370891607,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795928.2477252,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":3.774477559,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795928.7060363,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.35085255,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795928.8560498,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.495587188,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795929.8631783,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":6.476880079,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795930.0718703,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"59668","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.0044006,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779795930.2395937,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.631784674,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795931.2237327,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":4.724609831,"size":61,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795931.276344,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"60044","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":3.196794739,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795929.9116008,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.951875136,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795931.6222992,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=3&date_to=2026-05-26","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.649542422,"size":387,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795932.230082,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.884842338,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795932.3992991,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.430951696,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795932.483298,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.156847636,"size":61,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795932.6569645,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Port":["80"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.688902981,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795932.731603,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.402897444,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795932.9633858,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"50072","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":4.794431838,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795934.2744262,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"50086","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Connection":["keep-alive"],"Content-Type":["application/json"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":4.901166753,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795935.114252,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Pragma":["no-cache"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.856211173,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795935.2580178,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.848296466,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795936.5191247,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.026699257,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795936.9416633,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=4&date_to=2026-05-26","headers":{"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":4.276002897,"size":386,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795937.3874648,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":5.756900113,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795938.0530431,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":2.786229726,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795938.0776992,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.335710145,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795938.9245224,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"46418","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.646767992,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795940.2304788,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":3.693458846,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795940.7670546,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.704577547,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795940.9474235,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=6&date_to=2026-05-26","headers":{"X-Forwarded-Host":["localhost"],"Authorization":[],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.994409091,"size":384,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795941.6704476,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":5.142631759,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795941.982029,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"46362","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.042886261,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795942.690471,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":5.292078379,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795943.101803,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.015473879,"size":61,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795943.568404,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":2.609913439,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795945.360973,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.682166373,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795945.5196278,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":5.278143455,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795946.4128087,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"PUT","host":"localhost","uri":"/department/selfserve/studio/layout","headers":{"Sec-Gpc":["1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"Content-Type":["application/json"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"Content-Length":["2807"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":2807,"user_id":"","duration":5.636540519,"size":606,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["http://localhost:5173"],"Access-Control-Allow-Credentials":["true"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number, X-Release-Trace, X-Release-Channel, X-Frontend-Version, Cache-Control, Pragma, *"],"Access-Control-Allow-Methods":["GET, POST, PUT, PATCH, DELETE, OPTIONS"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795946.5566537,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.856266507,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795946.8357656,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"46364","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2863"],"Accept":["application/json"]}},"bytes_read":2863,"user_id":"","duration":4.591449989,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795947.198098,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=5&date_to=2026-05-26","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":4.087569432,"size":386,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795948.234842,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.7070441,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795948.8956015,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.525401708,"size":61,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795949.8241785,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42480","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["3160"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3160,"user_id":"","duration":4.820999145,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795950.2862403,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"46374","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.442157811,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795951.3834975,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":4.167843001,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795951.7773774,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":5.20916167,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795952.004203,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":5.583736997,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795952.4186592,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":4.171153315,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795953.0569453,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"36440","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":3.223141228,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779795953.3674963,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=7&date_to=2026-05-26","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.463865759,"size":387,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795953.9316282,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.533710558,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795955.5187004,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.731079767,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795956.6227827,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"43716","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.333626246,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795956.6675286,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/department/selfserve/studio/simulate","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Content-Length":["336"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Origin":["http://localhost:5173"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"Content-Type":["application/json"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":336,"user_id":"","duration":13.090653856,"size":8186,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Credentials":["true"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number, X-Release-Trace, X-Release-Channel, X-Frontend-Version, Cache-Control, Pragma, *"],"Access-Control-Allow-Methods":["GET, POST, PUT, PATCH, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Access-Control-Allow-Origin":["http://localhost:5173"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795957.1683466,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":5.154237462,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795957.5339088,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":4.153870848,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795957.8284287,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"36448","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":4.769796286,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795957.953607,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":5.527106617,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795958.2606122,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":4.317217055,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795958.1615033,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=14&date_to=2026-05-26","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.534067219,"size":387,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795959.2875133,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=0&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"Cookie":[],"Sec-Fetch-Mode":["no-cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["image"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":4.014371827,"size":1315963,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["image/png"],"Content-Length":["1315963"]}} +{"level":"info","ts":1779795959.5562563,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.78529332,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795959.5987637,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39302","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":3.673374746,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795960.6869752,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":4.628215462,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795961.1057239,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":2.934783545,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795961.5772314,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":5.940454891,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795962.5295794,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":6.165381435,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795963.0352724,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":3.464902875,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795963.3841891,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=13&date_to=2026-05-26","headers":{"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":4.070975157,"size":386,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795963.8856637,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39318","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.285205424,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795964.6950848,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.9926992,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795965.0980854,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.983861466,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795965.2502503,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Cookie":[],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":2.710741296,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795966.5914516,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.005872728,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795968.08322,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39334","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["604"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":604,"user_id":"","duration":4.19590916,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795968.3666904,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.969520948,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795968.4303756,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.385958597,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779795968.467072,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=84&date_to=2026-05-26","headers":{"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":3.762521928,"size":383,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795968.9117959,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.805076411,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795969.4915442,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":4.231736725,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795971.2741113,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54136","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3159"],"Accept":["application/json"]}},"bytes_read":3159,"user_id":"","duration":4.527435696,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795971.7834692,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.40841207,"size":61,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795972.1480484,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.705684512,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795972.788107,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.867785501,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795973.5017073,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":6.90122912,"size":185,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795973.5214016,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments/daily-reports/transaction-count?date=2026-05-26&department_id=12&date_to=2026-05-26","headers":{"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.013555645,"size":383,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795974.2879705,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"36928","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":6.201087145,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795974.4913144,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.697661921,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779795974.5865986,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54144","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":3.300331627,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779795975.087026,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":6.607708464,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779795975.832191,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.674559208,"size":61,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795976.7086565,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.911726373,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795976.9781084,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.467641898,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795977.1738212,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.671380415,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795977.6415467,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"60258","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.549717671,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795978.2281454,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Authorization":[],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.697331525,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795979.1885366,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54146","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["164"],"Accept":["application/json"]}},"bytes_read":164,"user_id":"","duration":4.597921922,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795980.0476422,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.861941583,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795980.9086883,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"57556","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.258225995,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795980.9473217,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.847785222,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795981.7097216,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.825473665,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795982.4970584,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"48114","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.307186067,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795983.1292076,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.072107688,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795983.467609,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.567949971,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795983.4906197,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.252843992,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795985.7416945,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Release-Channel":["stable"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":1.994243311,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795985.8566368,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"57570","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.683063046,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795986.4010253,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":5.43987182,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779795986.8559623,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":3.113756405,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795987.2525814,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"48124","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":4.753980971,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795987.163477,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"57082","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.189166413,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795988.1339178,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":6.277788113,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795988.363635,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":6.754810824,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779795989.971905,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.778976081,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795990.3266916,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":3.134302275,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795990.360481,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":5.839409221,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795990.4103851,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"52866","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":5.04627295,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779795991.4316833,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"42816","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":4.264303187,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795992.2261796,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.073227838,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795993.7418103,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.365867008,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795994.698243,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["*/*"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":2.176847889,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779795995.2924547,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"42818","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":4.879266118,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795995.817679,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":5.442939821,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779795995.8571374,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.330785297,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779795996.532128,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.00139335,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795996.6961365,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":4.164433415,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779795998.8361828,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":5.084363917,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796000.0750864,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"44420","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.779978854,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796000.2264607,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":2.366718557,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779796001.004078,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.146494624,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796001.0851371,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.225898442,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796001.399297,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.570570067,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779796002.8485122,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Cookie":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.99495547,"size":61,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796003.9794652,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":5.132602754,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796004.7146287,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"44422","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":4.626364998,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796005.2392397,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":2.04771097,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796006.3183908,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.12931357,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796006.3720126,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.515240796,"size":61,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796006.6023312,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":3.411266046,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796006.852078,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":5.442778554,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796008.214259,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50426","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3160"]}},"bytes_read":3160,"user_id":"","duration":4.753357138,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796009.380103,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":5.39302681,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796009.8502047,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"34796","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.873536306,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796010.5091014,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":1.966818725,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796010.9492128,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50436","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["671"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":671,"user_id":"","duration":2.726040752,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796011.5981858,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":3.058988468,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796012.3337057,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":3.792169172,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796012.7484071,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":5.883276701,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796014.600976,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"34804","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":4.742715138,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796014.7714827,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.383223617,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796015.5367253,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50452","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":4.586199458,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796014.3321154,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.82279552,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779796014.6022217,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Cookie":[],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.141228233,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796014.9215124,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.460017236,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796016.2200832,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":5.294476043,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796017.5514755,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"47754","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":4.836377549,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796017.977478,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.088392294,"size":185,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796018.783473,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39238","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":5.135113677,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"]}} +{"level":"info","ts":1779796019.3897498,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.54724325,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796020.623453,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.824712276,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796021.8340406,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":5.601322859,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796021.915191,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.116719124,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796023.120424,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.133447971,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796023.373869,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39252","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.589035592,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796024.3001945,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept":["*/*"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.17021939,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796024.781548,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":2.614087137,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796025.55273,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":3.422745691,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796025.5773253,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.445854494,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796026.8288922,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38028","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.453157491,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796027.0363777,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Cookie":[],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":5.189350177,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796030.144711,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":2.596049403,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796030.2905607,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":7.161239981,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796030.3134463,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":3.326158096,"size":61,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796031.300005,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.831699006,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796031.636212,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"57932","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":4.804696904,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796032.3001826,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":5.251904852,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796033.0267634,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.558627731,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796034.3545656,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"41478","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3163"]}},"bytes_read":3163,"user_id":"","duration":4.77578298,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779796034.364655,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":3.531828867,"size":61,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779796035.225987,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.361044016,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796035.4174526,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Authorization":[],"Cookie":[],"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":5.119529814,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796036.4162164,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38568","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.777424996,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796036.494995,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.673792979,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796036.8291183,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.786311865,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796037.7171807,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.401679842,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"error","ts":1779796037.7602105,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"39980","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":3.39448386,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796039.6059325,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38574","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["650"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":650,"user_id":"","duration":3.180034875,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796041.1604607,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.956677533,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796041.4336865,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.26401895,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796041.570421,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.398740598,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796042.2060137,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"39996","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":4.444414048,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796042.2866013,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":6.860601214,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796042.9826987,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":5.254232221,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"error","ts":1779796043.0550961,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38576","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":5.083492704,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796043.391828,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"43610","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.091793911,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796043.8800342,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.249001678,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796044.9648776,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":3.366529894,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796046.003221,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40774","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":2.940011049,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779796046.4119093,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.324518415,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796046.460658,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":6.073703186,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796046.715534,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.117246243,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796047.9189773,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"43622","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.525311335,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796049.77571,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.803557311,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796050.066624,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.128879443,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796050.2090414,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.270877779,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796050.8605416,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"58426","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"User-Agent":["node"],"Content-Length":["76"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":4.854648592,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796051.2476466,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.779704196,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796051.4973762,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.074962154,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796052.477958,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"43636","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":4.557652767,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796054.1789014,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Cache-Control":["no-cache"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":1.922545441,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796054.7059574,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":2.408073539,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796055.4447927,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.181107638,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796056.3268175,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.071095182,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796056.7434187,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":5.234904343,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796057.2611644,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"58426","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":4.78108374,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779796057.7433405,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.482309364,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796059.8495698,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.212975276,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796060.5510724,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.434756242,"size":61,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796061.0709321,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":3.469812165,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796061.558965,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":5.223490838,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796061.6957333,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":3.938718195,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796061.760218,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"59702","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["2863"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2863,"user_id":"","duration":4.496175357,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796062.1547983,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":5.402532885,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779796064.7006059,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"50158","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["653"],"Accept":["application/json"]}},"bytes_read":653,"user_id":"","duration":2.932059199,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796064.7149532,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":3.749812071,"size":61,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796066.0168488,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.081960857,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796066.5506258,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.984031303,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796066.5631592,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.627892763,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796066.8455849,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40334","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3160"],"Accept":["application/json"]}},"bytes_read":3160,"user_id":"","duration":3.951154293,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796067.4833932,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Authorization":[],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.318309549,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796067.5135176,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.783901575,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796070.0377035,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40348","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":3.183185772,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796071.1895518,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"50164","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2863"],"Accept":["application/json"]}},"bytes_read":2863,"user_id":"","duration":6.224711828,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796071.407154,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.139730829,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796071.6335957,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.366109409,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796071.6483982,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.088124725,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796071.1343539,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.527705821,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779796071.2495477,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.830649702,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796074.0067248,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35046","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":4.697903755,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796076.0407608,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.318628426,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796076.063261,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"57618","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":7.912297129,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796076.2668147,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.544575124,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796076.7638998,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-Proto":["http"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":6.993747331,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796076.871497,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"PUT","host":"localhost","uri":"/department/selfserve/studio/graph","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Content-Type":["application/json"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Release-Channel":["stable"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Content-Length":["76"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":76,"user_id":"","duration":16.798183344,"size":71827,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Credentials":["true"],"Access-Control-Allow-Methods":["GET, POST, PUT, PATCH, DELETE, OPTIONS"],"Access-Control-Allow-Origin":["http://localhost:5173"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number, X-Release-Trace, X-Release-Channel, X-Frontend-Version, Cache-Control, Pragma, *"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779796076.9715502,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.21769123,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796077.7055526,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Authorization":[],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":6.558130515,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796079.1401668,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.039021445,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796079.4330404,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"57626","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":3.368432523,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796079.4497015,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"43168","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["*"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":5.439958492,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796080.3644242,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Authorization":[],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.268039565,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796080.6140077,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.514365266,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796081.6771913,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.905015775,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796083.4504838,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":5.73349337,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796084.3820298,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54942","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.947679048,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796084.5999088,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Accept":["*/*"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":2.212102172,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796085.9442677,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.554097766,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796086.2400963,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.850645201,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796086.5101242,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":3.049232614,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796087.2113047,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.527420692,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796087.48939,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54946","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["604"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":604,"user_id":"","duration":3.105504737,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"]}} +{"level":"info","ts":1779796090.0605931,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":5.451662875,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796090.2588599,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":3.015014216,"size":61,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796091.9817374,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":4.763016374,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796092.3523045,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":4.619181772,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796092.401809,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.668777594,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796092.709135,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"54664","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.216773676,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796093.135194,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":3.065196722,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796093.371633,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/department/selfserve/studio/simulate","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Cookie":[],"X-Real-Ip":["172.20.0.1"],"Content-Length":["336"],"Content-Type":["application/json"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=tasks"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":336,"user_id":"","duration":13.344393521,"size":8034,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["http://localhost:5173"],"Access-Control-Allow-Credentials":["true"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number, X-Release-Trace, X-Release-Channel, X-Frontend-Version, Cache-Control, Pragma, *"],"Access-Control-Allow-Methods":["GET, POST, PUT, PATCH, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796095.594218,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Release-Channel":["stable"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.599499048,"size":61,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796096.086036,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":5.816793091,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779796096.2328544,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.852447022,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796096.3952312,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"49164","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["3157"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3157,"user_id":"","duration":4.91707471,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779796096.4746408,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.399456478,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796096.611597,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":3.466589226,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796097.0303302,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"36638","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.535920751,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796097.476621,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.110562823,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796099.1292255,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=12&lane=5¤t_step=0&buttons=%5B%22program_picker%22%2C%22reset%22%2C1%2C2%2C%22start%22%5D&vehicle_type=5&thumb_position=4","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"Sec-Fetch-Dest":["image"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["no-cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.526729481,"size":1315963,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Length":["1315963"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["image/png"]}} +{"level":"error","ts":1779796099.4731643,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"49170","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":3.064934892,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796098.1268165,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"36640","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":2.995218105,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796099.488163,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.461554733,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796100.7345815,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":3.710773642,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796101.1280282,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":4.106605953,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796101.1840892,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.60688704,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796101.2437932,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cookie":[],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":7.053062734,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779796102.6008441,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"44660","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Content-Length":["164"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":164,"user_id":"","duration":5.033020192,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796103.3567321,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35226","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3006"],"Accept":["application/json"]}},"bytes_read":3006,"user_id":"","duration":4.952142861,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796104.2791865,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.387063844,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796105.3237185,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Gpc":["1"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":3.465249599,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796105.6269388,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"44674","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.024473041,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796106.3875465,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":5.194533288,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796106.5640707,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35234","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["650"],"Accept":["application/json"]}},"bytes_read":650,"user_id":"","duration":3.198383452,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"]}} +{"level":"info","ts":1779796107.2726784,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.413974965,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796107.9512413,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"]}},"bytes_read":0,"user_id":"","duration":6.696714258,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779796109.6291282,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":2.397500977,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796110.8616605,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.678401782,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796111.4329839,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"58992","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Length":["76"],"Connection":["keep-alive"],"User-Agent":["node"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":4.86589222,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796111.484344,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"44690","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":5.855293652,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796111.4848826,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":4.194369029,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796111.5253663,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"X-Release-Channel":["stable"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.129664801,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796114.70944,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"57618","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":3.223420605,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796114.7211177,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept":["*/*"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.210642447,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796115.3563962,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":2.799449968,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796115.8153362,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.296419937,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796116.4969962,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Authorization":[],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":8.533247393,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796116.7656558,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":5.227683789,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796118.3846781,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Authorization":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.865717783,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796119.87123,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"58992","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":5.159738638,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796120.4067338,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.500624216,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796120.946151,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":3.56995188,"size":61,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796121.5019658,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.645272145,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796122.2119877,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.705725076,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796122.5690296,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Port":["80"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.16733144,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796123.1205094,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":6.347559173,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796124.8829381,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"57898","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":5.008894214,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796124.9671223,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/admin/bookings/department/count?department_id=12&department_id=12","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.748951401,"size":61,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796125.7814643,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.553246158,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796126.2898283,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.095693492,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796126.4328694,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.238081762,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796127.8452616,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.622831635,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779796127.8856797,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Authorization":[],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":4.754846304,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796126.2248478,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"57900","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["653"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":653,"user_id":"","duration":3.215848969,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"]}} +{"level":"error","ts":1779796126.3186142,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43134","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3158"]}},"bytes_read":3158,"user_id":"","duration":4.741534573,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796129.423893,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53416","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["671"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":671,"user_id":"","duration":3.09720715,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796130.489286,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.847357405,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796131.140837,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways?view=summary","headers":{"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser"]}},"bytes_read":0,"user_id":"","duration":7.23906709,"size":1925,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796131.3118968,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"]}},"bytes_read":0,"user_id":"","duration":5.34418353,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796132.6804786,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"59948","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":6.194943882,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796133.0479007,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/admin/12/modules/self-serve/studio?lane_id=5&vehicle_type_id=5&tab=simulator"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":7.042803639,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796133.950218,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.800373032,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796134.4573386,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53424","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":5.032039722,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796134.47997,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&order=id:asc","headers":{"X-Customer-Number":[""],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Sec-Fetch-Site":["same-origin"],"Sec-Fetch-Mode":["cors"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/superuser/customers"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":8.57053845,"size":16663,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796134.7260864,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Cookie":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"X-Release-Channel":["stable"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":4.222731422,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796135.9183917,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"59958","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.229380291,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796137.502263,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"49872","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":3.043157467,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779796138.6611192,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&search=ple&order=id:asc","headers":{"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Customer-Number":[""]}},"bytes_read":0,"user_id":"","duration":4.701809867,"size":2660,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779796140.0427523,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&search=p&order=id:asc","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"Sec-Gpc":["1"],"X-Customer-Number":[""],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":8.721534663,"size":16715,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796140.949826,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&search=plen&order=id:asc","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Customer-Number":[""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Cookie":[],"Sec-Gpc":["1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Referer":["http://localhost:5173/superuser/customers"]}},"bytes_read":0,"user_id":"","duration":6.460184186,"size":827,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796141.2126336,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&search=pl&order=id:asc","headers":{"X-Release-Channel":["stable"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Customer-Number":[""],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":8.154262877,"size":15622,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796142.0721574,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"49878","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.568363801,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796142.2369127,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"50304","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Content-Length":["76"],"Connection":["keep-alive"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":6.315983594,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796142.82566,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&search=pleno&order=id:asc","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Customer-Number":[""],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.151518787,"size":549,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796142.9841785,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":8.249919434,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796144.11752,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.066740375,"size":1385,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779796145.3923035,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"49886","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.318283,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796145.5669103,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":2.729765265,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796146.697103,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"]}},"bytes_read":0,"user_id":"","duration":5.475529506,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796146.7894497,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":5.83001314,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779796147.0050423,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.013188049,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796147.0299556,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Accept":["*/*"],"Cache-Control":["no-cache"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.899526244,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796149.171414,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.371517997,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796149.9396107,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customer/attributes?user_id=1952","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.231821276,"size":451,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796150.3271167,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"50304","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":4.932800348,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796150.464358,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.452082967,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796151.871601,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":6.295796562,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796152.200347,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":5.16332652,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779796152.6449285,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.696946808,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796152.6940653,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/superuser/system/status","headers":{"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":29.50372853,"size":9097,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796153.4353304,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":4.254571216,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796154.2031057,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.723184755,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796154.775542,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"51916","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.445312112,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779796155.9753852,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/su/intimidate","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"Sec-Gpc":["1"],"Content-Length":["16"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Content-Type":["application/json"],"Origin":["http://localhost:5173"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":16,"user_id":"","duration":3.323597849,"size":124,"status":200,"resp_headers":{"Access-Control-Allow-Origin":["http://localhost:5173"],"Access-Control-Allow-Credentials":["true"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number, X-Release-Trace, X-Release-Channel, X-Frontend-Version, Cache-Control, Pragma, *"],"Access-Control-Allow-Methods":["GET, POST, PUT, PATCH, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796154.4697163,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.677009912,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796155.2600412,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.72049981,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796155.2780213,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.304895912,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796155.723543,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.414147422,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796155.9466786,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"37454","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["650"],"Accept":["application/json"]}},"bytes_read":650,"user_id":"","duration":3.071524468,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796156.578956,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"52108","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3161"]}},"bytes_read":3161,"user_id":"","duration":4.226011475,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796156.7869809,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":6.484437191,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796158.6396222,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.16315227,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796159.4301078,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"52122","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["674"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":674,"user_id":"","duration":2.840218982,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796160.0442953,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.270421978,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796160.4495866,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.161810192,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796160.6214714,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.847335336,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796160.7523866,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57944","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/login/qr?token=46dc491b9e27fbb4a18bbd5236da97960ccbf716364d5fbd3b44d357c45ecef7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.30904281,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796160.8649435,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"37456","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3006"],"Accept":["application/json"]}},"bytes_read":3006,"user_id":"","duration":4.655543302,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796161.195877,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59926","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/login/qr?token=46dc491b9e27fbb4a18bbd5236da97960ccbf716364d5fbd3b44d357c45ecef7"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.753467931,"size":111,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796161.457698,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.780154228,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796161.4881668,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":1.989676059,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796161.6251216,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57950","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/reCAPTCHA/public","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.649084149,"size":213,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796162.3584461,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.554486013,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796163.1518402,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.654078334,"size":971,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796163.396894,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"52132","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Content-Length":["164"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":164,"user_id":"","duration":3.964383239,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796163.651793,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":4.149578187,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796164.7277765,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Mobile":["?0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":2.579565568,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796165.2786326,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"]}},"bytes_read":0,"user_id":"","duration":3.17906576,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796165.3774836,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57956","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":5.904084459,"size":1634,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779796165.3873754,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.286287154,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796165.4451642,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"37464","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["650"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":650,"user_id":"","duration":4.572178316,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796165.62196,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.163848887,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796166.8248785,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"49606","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.426481084,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796167.7052603,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.8822846,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796167.936931,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.567030157,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796170.144376,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.656324924,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796170.1827147,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"36222","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":4.732981401,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779796170.5658002,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.934689392,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796170.6572053,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.218093315,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796170.8271518,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57956","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Authorization":[],"Sec-Fetch-Site":["same-origin"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":3.387870653,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796172.9473855,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.78904953,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796172.9763613,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"49620","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":6.149604961,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796174.021467,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":4.636371161,"size":743,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796174.7467875,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57956","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["*/*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":1.976634251,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796174.992626,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":7.044545955,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796175.282537,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":2.464269351,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796175.7777443,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":5.196099004,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796175.8289483,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.056737532,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796176.046185,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35732","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":3.068126514,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796176.3388972,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.566433194,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796180.2467363,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"]}},"bytes_read":0,"user_id":"","duration":4.749884201,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796180.919227,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.757890091,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796181.102215,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":6.097481992,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796181.3239849,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.209271618,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796181.5067196,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57956","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":3.391860953,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796181.5628912,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Cookie":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.776802853,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796181.6865873,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"54958","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept":["*/*"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"]}},"bytes_read":76,"user_id":"","duration":5.637481323,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796183.6567826,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":7.553548704,"size":743,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779796182.4118905,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Pragma":["no-cache"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":3.466590336,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796185.567638,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.007061997,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796185.6436467,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":6.418962043,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796185.6572633,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35748","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":5.855914373,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796185.8122838,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.251653834,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796187.8637435,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Host":["localhost"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":8.179231884,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796188.2215273,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.938594731,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796188.7960193,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways?view=summary","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":7.851111644,"size":1919,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796188.9863255,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35292","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3160"]}},"bytes_read":3160,"user_id":"","duration":8.665165599,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796189.7075908,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.131113322,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796191.7539442,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"58362","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":6.088413363,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779796191.9093664,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Frontend-Version":["a952dd2c"],"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Pragma":["no-cache"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":7.011722447,"size":743,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779796193.1801805,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":7.519419706,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779796194.1932843,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":4.44983492,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796194.5806427,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35294","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":5.583860636,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796194.6850138,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Proto":["http"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":7.790474237,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796195.193085,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":7.311317888,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796195.8549123,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57956","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/superuser/system/status","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":14.913270691,"size":9103,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796196.9479344,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":8.133145395,"size":185,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796197.2743862,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Channel":["canary"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":7.646314624,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796200.8704386,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":6.150556552,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796201.0186934,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":5.802633485,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796201.4984384,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"56860","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":9.455240295,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796201.7408721,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"57724","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":7.152218079,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796202.2635827,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":8.057569872,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796202.6632779,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.375809545,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796203.1869128,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Frontend-Version":["a952dd2c"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":7.62454594,"size":743,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796204.4604716,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":11.267908437,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796205.5682166,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":8.606150681,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796206.0674326,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.163729717,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796206.2728887,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.23533086,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796206.3972626,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"43906","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":4.889872923,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796206.9022877,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46200","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["617"],"Accept":["application/json"]}},"bytes_read":617,"user_id":"","duration":5.158946986,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796207.3023908,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.026237309,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796208.2837918,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":5.597407131,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796208.5663848,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57956","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept":["*/*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"Cookie":[],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":5.645650863,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796211.4817336,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.145551668,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796211.7315674,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.63927757,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796211.8317878,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.535530616,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796212.2106516,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"]}},"bytes_read":0,"user_id":"","duration":3.908057603,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796211.0850053,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":6.738005579,"size":742,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796211.1553957,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Port":["80"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":8.584249096,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796211.2557428,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":7.5794864,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796211.4641047,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"45142","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":6.967826558,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796211.5073335,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46206","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":6.509275893,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796213.11084,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"]}},"bytes_read":0,"user_id":"","duration":3.520985644,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796213.7713199,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.458519018,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796214.6360614,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Release-Channel":["stable"],"Authorization":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":4.694541872,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796215.4858592,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"51774","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.976202395,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796215.9832418,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":6.128656124,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796216.478967,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.356776596,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796217.2814486,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":6.013867712,"size":185,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796217.5538828,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":6.383499066,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779796220.7031465,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":6.051899687,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796222.124561,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":7.704940075,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796222.6813343,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Accept":["application/json"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Referer":["http://localhost:5173/redirect"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":7.655649318,"size":743,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796223.7818894,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"35270","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":8.293232159,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796224.4726555,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":7.386753597,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796224.539434,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":8.533009756,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796226.8687952,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.719678811,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796227.3288631,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":10.030840517,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796227.5411272,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":6.816669811,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796228.3325136,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"33238","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":7.837336005,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779796228.4518383,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.961995127,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796230.440172,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.870633622,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796230.672165,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"33736","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3162"]}},"bytes_read":3162,"user_id":"","duration":7.179219102,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796230.9933922,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":13.401604585,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796232.1062605,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":5.22358382,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796233.9497485,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.497970214,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796234.5479043,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":6.99455465,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796234.673387,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"55490","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":3.977248695,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779796235.0142457,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Pragma":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":9.323733555,"size":742,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796235.094898,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Host":["localhost"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":6.619969074,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796235.8081748,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.793490197,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796236.146689,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34188","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["650"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":650,"user_id":"","duration":7.795349435,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796236.4293659,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways?view=summary","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":9.090875415,"size":1925,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796239.1545157,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":4.59466126,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796239.2710721,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/redirect"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":7.154897467,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779796239.9412475,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.83437341,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796239.6488993,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.07340795,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796239.8955693,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"55504","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":7.108144559,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796240.0535655,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":7.982098939,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796240.4344296,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Authorization":[],"Pragma":["no-cache"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.962321512,"size":742,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796241.5373223,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34202","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":6.955315464,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796242.3899577,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.326302959,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796242.9801917,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.703757015,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796243.6208875,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":6.227906584,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796243.695021,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"43664","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["619"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":619,"user_id":"","duration":3.796121617,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796244.524811,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.85403528,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796244.8030252,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Cookie":[],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":10.86786118,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796246.0042088,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":3.603329539,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796246.169086,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44048","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":4.620495712,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796246.7928834,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":6.722758402,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796247.415756,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":4.40283411,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796248.0495298,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":4.416945106,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796248.776492,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"43672","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":5.079121838,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796248.915277,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.37517768,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796250.0118337,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.867879256,"size":743,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796251.3848557,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.194756175,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796252.893189,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":5.44685957,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796252.9772866,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.917525542,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796253.6108198,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":8.792863081,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796253.9393797,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54828","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":5.160206291,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796254.1117835,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":7.302762122,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779796254.2601748,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"35830","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":8.087005485,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796255.0758986,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":6.142310979,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796256.1031756,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.578538753,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796256.4347272,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":3.446899569,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796257.0723615,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/superuser/system/status","headers":{"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":32.956518007,"size":9103,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779796257.5252373,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":4.601714431,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796259.4951663,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"35834","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":5.542262312,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796259.5476506,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":4.456926718,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796260.6510494,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":6.520080274,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796260.7792172,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Port":["80"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"]}},"bytes_read":0,"user_id":"","duration":4.333686833,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796261.7943468,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Cache-Control":["no-cache"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.981292752,"size":742,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796261.8499007,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":8.220648519,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796263.9940696,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":3.195037373,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796264.1049838,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":6.272282055,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796264.2404304,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":6.375810234,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796266.3911757,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54086","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":6.891623324,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796268.1642401,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":7.494675368,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779796266.8147626,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":9.156439773,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779796267.2501206,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":7.295648328,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796267.6994455,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59902","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":5.921042556,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796268.1604116,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.814702282,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796269.2293825,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.193994543,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796269.2542405,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"51706","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3141"]}},"bytes_read":3141,"user_id":"","duration":7.954340205,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796269.3937302,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":7.113943456,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796269.9211364,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"49954","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":5.420106011,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796271.6568408,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Authorization":[],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":7.059771126,"size":743,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779796272.121261,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":5.289773379,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796272.645101,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.317154269,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796272.996497,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56146","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":3.731217472,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796273.2632296,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":6.987708223,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796273.8563454,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Mode":["cors"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":5.678128826,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796273.9057431,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":6.641866516,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796273.9973931,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":4.581659138,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796275.4459298,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"49966","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":5.253929809,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796277.4294918,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.557995534,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796278.9240346,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56156","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":5.925473603,"size":131,"status":401,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796278.969941,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":4.303772712,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796279.3891814,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":5.359522813,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796279.531908,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":7.395858674,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796280.1797037,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"51616","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":4.721185008,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796280.2220068,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":6.296253008,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796280.3586447,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":7.083193667,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779796281.6535888,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":4.205631045,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796283.2720065,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":3.273690953,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796283.3507628,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"33262","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":4.423563278,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796284.1234007,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":4.704792617,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796284.1407523,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":8.861858653,"size":743,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796284.378175,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.822355301,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796285.817606,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"58894","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":5.633607124,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779796286.4079783,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.748446314,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796286.6399646,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":6.264159626,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796289.0920537,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":3.751186813,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796289.2698498,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":9.03440232,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796289.6766398,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"33264","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":6.324247285,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796289.775203,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"X-Release-Channel":["stable"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.623192723,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796292.4718733,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":6.527684393,"size":743,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796292.5503273,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":8.155470645,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796293.6820238,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.398659494,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796293.872074,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":7.216668326,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796294.630244,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"48342","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":4.948609109,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796295.4383903,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways?view=summary","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"]}},"bytes_read":0,"user_id":"","duration":8.201655899,"size":1925,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796296.3541572,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":6.559124029,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796294.8927705,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":6.104991749,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796295.202122,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Pragma":["no-cache"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"]}},"bytes_read":0,"user_id":"","duration":3.2052228,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796295.5392296,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.861165351,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779796295.973266,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.167128868,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796297.3058374,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.743785537,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796297.748146,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.840518826,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796298.529549,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/superuser/system/status","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":13.174505986,"size":9145,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"error","ts":1779796298.6928723,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"35640","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":5.946543997,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796299.5558887,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.984465956,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796299.7297425,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json"],"Authorization":[],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["bc237215c5c4448097a216a629673315"]}},"bytes_read":0,"user_id":"","duration":4.998875513,"size":743,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796299.9005284,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":2.584868728,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796300.4422963,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"X-Release-Channel":["stable"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.962187467,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796300.5992475,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.385225715,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796300.8526208,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"46334","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3159"]}},"bytes_read":3159,"user_id":"","duration":4.895607157,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779796301.9042704,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Authorization":[],"Cookie":[],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":5.916098122,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796303.4729435,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["canary"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.022089457,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796305.2103868,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"46342","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":4.344183934,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"]}} +{"level":"info","ts":1779796305.9031923,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.79265421,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796306.3354223,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":6.756153659,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796306.4789102,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34346","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":7.783052861,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796306.9613273,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":5.03624885,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796307.0259976,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":6.40656683,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796307.3216555,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":6.837961166,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796308.4389768,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/redirect"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":3.644295457,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796310.8646138,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58056","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["650"],"Accept":["application/json"]}},"bytes_read":650,"user_id":"","duration":4.357593167,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796311.3464522,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37660","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":6.13389768,"size":131,"status":401,"resp_headers":{"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796311.693516,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":5.326537716,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796311.8592515,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":6.46117847,"size":743,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796312.8912828,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.894885991,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796314.0846584,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.951757206,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796314.6259136,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/customers"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":6.690123582,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796315.1634417,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37670","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.814075131,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796315.286002,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":7.941867397,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796316.2357323,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":4.51439376,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796316.6542346,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58068","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3006"],"Accept":["application/json"]}},"bytes_read":3006,"user_id":"","duration":5.518056922,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779796316.7001193,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":9.649882755,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796317.3547769,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.448063173,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796318.4423187,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Fetch-Dest":["empty"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.808305459,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796319.2003784,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":3.729540626,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796320.5825787,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"32892","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.919969696,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796320.9072194,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42022","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":5.741294545,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779796320.912409,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.640176503,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796321.8233488,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"Accept":["application/json"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":5.746198784,"size":742,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796322.028446,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":6.724122356,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796322.7602766,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":4.306869011,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796322.9632854,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.254821431,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796322.9643698,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59270","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Referer":["http://localhost:5173/redirect"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.250172661,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796323.080293,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.983234353,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796323.1684706,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":6.456649127,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796323.849817,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/redirect"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.916189026,"size":743,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796324.9098997,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Cache-Control":["no-cache"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.387154322,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796325.1290042,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua-Mobile":["?0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":6.104119375,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796325.9351318,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"44830","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":7.252481013,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796326.113699,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":4.541857833,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796326.3275397,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59268","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/redirect"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":8.522981193,"size":971,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796326.3279886,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42028","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":7.327919101,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796326.3743086,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.848625435,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796326.727573,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/user"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":7.003510412,"size":743,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796327.9684963,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":7.824853348,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779796328.3044822,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59270","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/user"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":7.236525506,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796328.4063046,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Channel":["stable"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Cookie":[],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":7.135127357,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796331.1378827,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":5.968061858,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796332.0964208,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59270","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/user"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.784337003,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796332.638655,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":5.772723712,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796333.1831884,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"44830","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.852372957,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796333.2675753,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":6.36858257,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796334.3088446,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/guest/validation/customer-number","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Content-Type":["application/json"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Origin":["http://localhost:5173"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Content-Length":["28"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/user/bookings/book"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":28,"user_id":"","duration":3.69496692,"size":90,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number, X-Release-Trace, X-Release-Channel, X-Frontend-Version, Cache-Control, Pragma, *"],"Access-Control-Allow-Methods":["GET, POST, PUT, PATCH, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["http://localhost:5173"],"Server":["Caddy"],"Access-Control-Allow-Credentials":["true"]}} +{"level":"info","ts":1779796334.7774153,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/products?id=40&department_id=null&customer_id=null&category_id=null&final_price=false","headers":{"Referer":["http://localhost:5173/user/bookings/book"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.164431659,"size":397,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796335.1894827,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":6.763880167,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796335.4724727,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":7.48863262,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796335.9238656,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/products?id=41&department_id=null&customer_id=null&category_id=null&final_price=false","headers":{"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Referer":["http://localhost:5173/user/bookings/book"]}},"bytes_read":0,"user_id":"","duration":5.310229303,"size":414,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796338.2820969,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.080264741,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796338.5790865,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Pragma":["no-cache"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/user/bookings/book"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":3.634801328,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796338.742585,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/guest/validation/customer-number","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-Proto":["http"],"Origin":["http://localhost:5173"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Cache-Control":["no-cache"],"Content-Type":["application/json"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Pragma":["no-cache"],"Referer":["http://localhost:5173/user/bookings/book"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Release-Channel":["canary"],"Content-Length":["28"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":28,"user_id":"","duration":3.519449449,"size":90,"status":200,"resp_headers":{"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number, X-Release-Trace, X-Release-Channel, X-Frontend-Version, Cache-Control, Pragma, *"],"Server":["Caddy"],"Access-Control-Allow-Methods":["GET, POST, PUT, PATCH, DELETE, OPTIONS"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["http://localhost:5173"],"Access-Control-Allow-Credentials":["true"]}} +{"level":"info","ts":1779796338.8067737,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59270","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Referer":["http://localhost:5173/user"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":6.698017614,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796338.9068587,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways?view=summary","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":7.759086116,"size":2252,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796339.1484735,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":6.499669378,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796339.785328,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":6.506591472,"size":82,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796340.1254103,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?1"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/user/bookings/book"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.93042151,"size":971,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796342.2904546,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":6.801503408,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796343.9594285,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39836","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Referer":["http://localhost:5173/user/bookings/book"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":8.729298897,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796344.0636969,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"39636","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":10.875679158,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779796344.4274356,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59270","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/user"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.606965715,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796344.4933054,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":5.568455714,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796345.7884734,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/account/security/passkeys","headers":{"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-Server":["06ef1c445ff3"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/user/profile"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":6.53985704,"size":373,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796346.1931415,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"59282","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3158"]}},"bytes_read":3158,"user_id":"","duration":8.218597189,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796346.6206515,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":7.433932336,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796347.013426,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customer/department/default","headers":{"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/user/profile"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"]}},"bytes_read":0,"user_id":"","duration":6.84834265,"size":169,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796347.4286795,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Release-Channel":["stable"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":9.134935428,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796348.0996444,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/user/bookings/book"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?1"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":8.945897948,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796348.4467657,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/user/profile"]}},"bytes_read":0,"user_id":"","duration":9.197909617,"size":1634,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779796349.4266756,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"36348","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":5.345975974,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779796349.5859692,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":7.274894253,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796349.8622172,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59270","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Pragma":["no-cache"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/user/profile"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.418473872,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796349.9052742,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":10.079600411,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796350.2508533,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39836","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?1"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"X-Forwarded-Port":["80"],"Authorization":[],"X-Real-Ip":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Cache-Control":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/user/profile"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":6.282327496,"size":971,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796350.6059568,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Cache-Control":["no-cache"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"Referer":["http://localhost:5173/user/profile"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":4.613063131,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796351.0676363,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/user"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Proto":["http"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":4.042011381,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"error","ts":1779796351.116056,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41262","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":4.897287531,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796351.6472192,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":7.144479525,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796351.99185,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Dest":["empty"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":5.339407334,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796352.3199854,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Referer":["http://localhost:5173/user/profile"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Cache-Control":["no-cache"],"X-Real-Ip":["172.20.0.1"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-For":["172.20.0.1"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":4.204677874,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796352.673269,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/user/profile"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":4.215758219,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796351.768354,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59270","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"Cache-Control":["no-cache"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["canary"],"X-Forwarded-Port":["80"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Language":["en-GB,en;q=0.9"],"Cookie":[],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-origin"],"Referer":["http://localhost:5173/user/profile"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"iOS\""],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.756041692,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796352.8271353,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Mode":["cors"],"Cookie":[],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/user/profile"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Pragma":["no-cache"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.618161852,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796352.8271353,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Referer":["http://localhost:5173/user/profile"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept":["*/*"],"Cookie":[],"Pragma":["no-cache"],"X-Real-Ip":["172.20.0.1"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":4.096093916,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796352.8273416,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39836","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/user/profile"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"Cookie":[],"Pragma":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Platform":["\"iOS\""]}},"bytes_read":0,"user_id":"","duration":4.453002416,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796352.8829591,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":7.317728906,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779796353.1073935,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":5.077373485,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796353.7424436,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"36354","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":5.937896504,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796355.1254807,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":7.417448932,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796355.4373872,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/user/bookings/book"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":4.985529194,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796356.0691092,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"Sec-Fetch-Dest":["empty"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Sec-Fetch-Site":["same-origin"],"Cookie":[],"Referer":["http://localhost:5173/user/profile"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":5.26320114,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796357.4272308,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39836","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Language":["en-GB,en;q=0.9"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Dest":["empty"],"Cookie":[],"Sec-Gpc":["1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["canary"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.170817069,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796357.5998526,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/superuser/customers"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Authorization":[],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":7.448762316,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796357.8562584,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":8.083625925,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796358.8317602,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"]}},"bytes_read":0,"user_id":"","duration":4.439631057,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796359.1161246,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["*/*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":6.222496672,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796359.2106233,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.533490653,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796360.9337027,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59270","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/guest/departments?include_lanes=true","headers":{"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Cookie":[],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"]}},"bytes_read":0,"user_id":"","duration":9.152557246,"size":816,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796362.0611265,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39836","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"iOS\""],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?1"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"]}},"bytes_read":0,"user_id":"","duration":3.468429619,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796362.1836748,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59268","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/superuser/system/status","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":35.38339002,"size":9107,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779796362.3538735,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"55110","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":8.603053857,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796362.3558357,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"59424","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":13.12197891,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796363.12796,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.506565547,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796363.2388468,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":8.085874223,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796363.328574,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":5.45990928,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796364.033311,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Cache-Control":["no-cache"],"Cookie":[],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Dest":["empty"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"X-Release-Channel":["canary"],"Pragma":["no-cache"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.326337119,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796364.4640427,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Accept":["application/json, text/plain, */*"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Cookie":[],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.456728191,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796364.9596949,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/customers"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":11.842305403,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796365.3747187,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":8.371902541,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796366.238814,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39420","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":3.880752626,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796366.821633,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":3.478064342,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796367.308565,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":4.154254651,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796367.4528313,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":4.199271883,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796367.5165257,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59268","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-Port":["80"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"Pragma":["no-cache"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.587099062,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796367.986932,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39836","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/user/wash/start"],"X-Frontend-Version":["a952dd2c"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.638114188,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796367.9904752,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Sec-Ch-Ua-Mobile":["?1"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Cache-Control":["no-cache"],"Cookie":[],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"]}},"bytes_read":0,"user_id":"","duration":2.938519818,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796368.1969843,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"34924","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":5.83789586,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796372.3935456,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":7.411421922,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796372.4666507,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":7.081295882,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796372.6203878,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.786132317,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796373.08189,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.41161177,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796373.1487746,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59268","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":5.478856219,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796373.1946745,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Pragma":["no-cache"]}},"bytes_read":0,"user_id":"","duration":3.928947174,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796373.4995959,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39836","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-Server":["06ef1c445ff3"],"Cache-Control":["no-cache"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"Pragma":["no-cache"]}},"bytes_read":0,"user_id":"","duration":3.112784885,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796373.8444414,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Release-Channel":["canary"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.157602887,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796376.0158048,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"X-Release-Channel":["stable"],"Cookie":[],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.387711441,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796378.0604923,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en;q=0.9"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":3.445578894,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796378.0817308,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/guest/departments?include_lanes=true","headers":{"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"]}},"bytes_read":0,"user_id":"","duration":6.435497866,"size":816,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796378.8914692,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39836","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Cache-Control":["no-cache"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?1"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"]}},"bytes_read":0,"user_id":"","duration":3.151904313,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796379.0470736,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Pragma":["no-cache"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Cache-Control":["no-cache"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.006678802,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796379.125729,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39436","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":12.885412184,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796379.9061522,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":6.807074387,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796380.1168783,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59268","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"]}},"bytes_read":0,"user_id":"","duration":6.950737293,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796379.9998055,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":9.431951281,"size":185,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796380.679193,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":10.181515699,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796382.1440103,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":8.017880206,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796382.7131064,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"Pragma":["no-cache"],"Sec-Gpc":["1"],"Cache-Control":["no-cache"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept":["application/json, text/plain, */*"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Release-Channel":["canary"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":4.663513353,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796383.233283,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"36524","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":6.014102225,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779796383.5651414,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-Server":["06ef1c445ff3"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"X-Real-Ip":["172.20.0.1"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":4.389706485,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796383.5773532,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57966","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"Pragma":["no-cache"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":4.097761976,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796384.422283,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59930","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":6.399260103,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796385.4742823,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59268","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":7.250268367,"size":82,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796386.2606182,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"51524","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3161"]}},"bytes_read":3161,"user_id":"","duration":7.92534784,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796386.7892294,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"39836","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en;q=0.9"],"Cookie":[],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept":["*/*"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":8.719488797,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796388.4338481,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43184","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":8.414647563,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796388.9915016,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":5.675474715,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796389.6760356,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"33106","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":8.979378703,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796390.1990602,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51982","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":6.685582606,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796390.8743873,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"51534","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":4.596068012,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796391.3244357,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51980","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts?department=12","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":7.81015599,"size":82,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796391.3635597,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51946","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/modules/self-serve/lane/wash/in-progress?lane_id=5","headers":{"Referer":["http://localhost:5173/user/wash/start"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.20.0.1"],"Cache-Control":["no-cache"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Pragma":["no-cache"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"]}},"bytes_read":0,"user_id":"","duration":7.850414184,"size":127,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796391.3646595,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51970","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/modules/self-serve/lane/wash/in-progress?lane_id=1","headers":{"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Authorization":[],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-Proto":["http"],"Pragma":["no-cache"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?1"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":7.855073622,"size":127,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796391.4211001,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"49818","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":8.18337078,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796391.9997385,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51936","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/modules/self-serve/lane/wash/in-progress?lane_id=6","headers":{"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":8.503110025,"size":127,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796392.0433621,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51996","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":8.473764424,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796392.4252326,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51962","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=department_id:12,customer_id:777&page=1&limit=100&search=&order=id:DESC","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":8.928284523,"size":185,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796392.5375865,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52000","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/release/timeline/events","headers":{"Accept":["*/*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Referer":["http://localhost:5173/superuser/customers"],"X-Real-Ip":["172.20.0.1"],"Content-Type":["application/json"],"Cookie":[],"Origin":["http://localhost:5173"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"Content-Length":["4085"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"]}},"bytes_read":4085,"user_id":"","duration":8.96799863,"size":135,"status":202,"resp_headers":{"Status":["202 Accepted"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["http://localhost:5173"],"Access-Control-Allow-Credentials":["true"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number, X-Release-Trace, X-Release-Channel, X-Frontend-Version, Cache-Control, Pragma, *"],"Access-Control-Allow-Methods":["GET, POST, PUT, PATCH, DELETE, OPTIONS"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796392.5443215,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51928","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"POST","host":"localhost","uri":"/release/timeline/events","headers":{"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Authorization":[],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Gpc":["1"],"Cache-Control":["no-cache"],"Origin":["http://localhost:5173"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Content-Length":["3898"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"iOS\""],"Accept":["*/*"],"Cookie":[]}},"bytes_read":3898,"user_id":"","duration":9.05244431,"size":135,"status":202,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["202 Accepted"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Access-Control-Allow-Origin":["http://localhost:5173"],"Access-Control-Allow-Credentials":["true"],"Access-Control-Allow-Headers":["Content-Type, Authorization, X-Customer-Number, X-Release-Trace, X-Release-Channel, X-Frontend-Version, Cache-Control, Pragma, *"],"Access-Control-Allow-Methods":["GET, POST, PUT, PATCH, DELETE, OPTIONS"]}} +{"level":"info","ts":1779796393.6284814,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/modules/self-serve/lane/wash/in-progress?lane_id=3","headers":{"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Gpc":["1"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":10.312321127,"size":424,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796394.2955441,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46552","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":6.054134251,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796394.7070603,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51976","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/modules/self-serve/lane/wash/in-progress?lane_id=2","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Language":["en-GB,en;q=0.9"],"Cookie":[],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":11.193087695,"size":127,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796398.1470785,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46558","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.840869433,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779796398.5383034,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"60932","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":7.661175298,"size":131,"status":401,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796400.2740426,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"52000","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/edge-gateways?view=summary","headers":{"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":7.639554997,"size":1918,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796403.354252,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"39488","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":4.813137252,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796404.7899344,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54978","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":6.378944087,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796405.420304,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51928","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/superuser/system/status","headers":{"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":12.84207283,"size":8192,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796408.139594,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54988","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["650"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":650,"user_id":"","duration":3.339938086,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796408.512182,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"39492","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":5.155566807,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779796409.748223,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"57978","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"iOS\""],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-For":["172.20.0.1"],"Pragma":["no-cache"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?1"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"]}},"bytes_read":0,"user_id":"","duration":3.729833765,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796409.748799,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51962","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"Pragma":["no-cache"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Cookie":[],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.73024467,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796410.095673,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51976","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Dest":["empty"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"]}},"bytes_read":0,"user_id":"","duration":4.07741819,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796410.1212423,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51996","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Sec-Gpc":["1"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.063027832,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796410.6708925,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"51936","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Ch-Ua-Platform":["\"iOS\""],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Cache-Control":["no-cache"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en;q=0.9"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":4.540842075,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796411.6769114,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"59744","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":5.051277202,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779796413.186739,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"41578","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.927392337,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796417.3846936,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59270","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/vehicles","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Cookie":[],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?1"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":60.220948139,"size":1062,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796417.7519934,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"41582","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.06886002,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796423.3868155,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"59908","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/products?final_price=false","headers":{"Cache-Control":["no-cache"],"Accept-Language":["en-GB,en;q=0.9"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Pragma":["no-cache"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"iOS\""],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":62.548031199,"size":8082,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796423.601849,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"44046","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":5.821047686,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796427.8484445,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"44050","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":4.2308597,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796430.5868874,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"55466","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3157"]}},"bytes_read":3157,"user_id":"","duration":5.316672409,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779796433.1224105,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35770","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":5.008190246,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796434.0248706,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"55472","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":3.429554093,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796436.5304632,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35772","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.398111252,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796436.9883506,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"55480","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":4.868310673,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796439.766,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"53070","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.13821263,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796440.7929525,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35610","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":3.80330588,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779796446.0248764,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"35612","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Type":["application/json"],"Content-Length":["100"],"Accept":["application/json"]}},"bytes_read":100,"user_id":"","duration":5.230492899,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796449.7818067,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"39646","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["604"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":604,"user_id":"","duration":3.754882293,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796454.9512913,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"34052","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.166316734,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796456.697308,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"47740","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3161"]}},"bytes_read":3161,"user_id":"","duration":4.894677316,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796459.6511502,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"57476","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.860513288,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796460.182852,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"33618","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":3.473230857,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796462.9988694,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"57478","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.33960014,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796465.0203986,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"33632","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Content-Length":["164"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":164,"user_id":"","duration":4.835972262,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796466.2870176,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"55960","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.909963539,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779796466.5935457,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37402","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.45866701,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796471.5089922,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"55966","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["650"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":650,"user_id":"","duration":5.213527173,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779796473.2062838,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37414","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":6.611087435,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796478.2154253,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"34592","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":6.702639729,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796478.3579402,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"41994","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":5.149100974,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796483.642315,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"34592","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.281934706,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796490.1370459,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"49164","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2863"],"Accept":["application/json"]}},"bytes_read":2863,"user_id":"","duration":6.491065726,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796491.6225264,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"49176","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["653"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":653,"user_id":"","duration":3.384066264,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796493.0837517,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44236","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3138"]}},"bytes_read":3138,"user_id":"","duration":6.441878053,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779796496.5689688,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"60178","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.681018742,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779796498.3481143,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"59676","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":5.256116541,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796502.378044,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"60188","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":5.798100722,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796502.4174638,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45238","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.036603589,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796502.4227655,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45256","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["*/*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Cookie":[],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":3.947324828,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796502.4242275,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45226","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.142253659,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796503.1714447,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45242","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/user/wash/start"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Language":["en-GB,en;q=0.9"],"X-Release-Channel":["stable"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"]}},"bytes_read":0,"user_id":"","duration":4.701070524,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796503.626816,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45228","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.24800253,"size":1385,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796505.174582,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"59690","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":6.821297769,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796505.5574393,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":7.283553086,"size":1933,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796506.4717314,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45270","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":7.948477883,"size":1634,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796507.213375,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45264","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/guest/departments?include_lanes=true","headers":{"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/user/wash/start"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":8.694970639,"size":816,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796507.240699,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45250","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"X-Forwarded-Host":["localhost"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Port":["80"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?1"],"Pragma":["no-cache"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":8.767341172,"size":971,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796508.3195047,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45228","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Release-Channel":["stable"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.569165785,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796508.4023883,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"55252","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"]}},"bytes_read":76,"user_id":"","duration":6.018736187,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796510.5940788,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"49004","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":5.414531499,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796510.60328,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45242","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":6.713135394,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796511.516991,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.524919422,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796512.3343692,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45228","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Cookie":[],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Site":["same-origin"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":3.232497972,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796512.7154343,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45242","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":2.104011377,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796513.8505795,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45226","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":7.846336985,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796514.624738,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53410","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.029168976,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796514.9938238,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45250","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/vehicles","headers":{"Referer":["http://localhost:5173/user/wash/start"],"X-Release-Channel":["canary"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-Proto":["http"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":7.746013196,"size":1062,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796517.240432,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.68393447,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796517.5951874,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53420","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["604"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":604,"user_id":"","duration":2.968826842,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796518.1394105,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45242","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Cookie":[],"Pragma":["no-cache"],"Sec-Gpc":["1"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.70794982,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796518.387127,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45228","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.855305682,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796518.444702,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45256","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&order=id:asc","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept":["application/json, text/plain, */*"],"X-Customer-Number":[""],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":12.434366586,"size":16663,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796520.548008,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45226","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":6.666031064,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796520.5186253,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45256","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["canary"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Cache-Control":["no-cache"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Referer":["http://localhost:5173/user/wash/start"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.647176458,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796520.5885916,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45228","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.599202689,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796520.7676597,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"51236","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":5.057153455,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796520.8841066,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"]}},"bytes_read":0,"user_id":"","duration":5.500139778,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796523.9054008,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54602","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3164"]}},"bytes_read":3164,"user_id":"","duration":5.351818981,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796523.9920626,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45264","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/guest/departments?include_lanes=true","headers":{"Cookie":[],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":7.952630784,"size":816,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796525.7654748,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.850118027,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796526.1266675,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45256","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.797072402,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796526.443449,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45226","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":7.767435027,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796526.5181305,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43388","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":5.747400841,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796526.9329557,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54614","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":3.012151897,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796527.3677888,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45228","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Cookie":[],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":4.155984619,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796529.336843,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43394","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":2.810221672,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779796529.7006161,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":3.909874751,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796530.7271507,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45242","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":2.06843318,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796530.728625,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45264","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["*/*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":2.072702813,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796530.7292607,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45228","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Pragma":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.187830354,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796531.0778913,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45256","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["*/*"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"]}},"bytes_read":0,"user_id":"","duration":2.488550338,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796531.5893617,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45226","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.132910355,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779796531.6859412,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54626","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Content-Length":["164"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":164,"user_id":"","duration":4.751545423,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796534.4594135,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.735940967,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796534.6618476,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"49392","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["619"],"Accept":["application/json"]}},"bytes_read":619,"user_id":"","duration":2.974260257,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796535.1045685,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"45670","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["3006"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3006,"user_id":"","duration":5.504051447,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796536.3601546,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45256","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.482971915,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796536.4549434,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45228","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":2.461423449,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796537.137612,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45226","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.539269115,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779796538.8461404,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45218","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.358597725,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796539.267855,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"45672","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":4.155228745,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796539.904555,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"49400","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":5.241460756,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796540.2278621,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45264","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Pragma":["no-cache"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":2.837477515,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796540.7314181,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45270","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":3.270447855,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796541.8311832,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45238","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Fetch-Dest":["empty"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Cookie":[],"Sec-Gpc":["1"],"Cache-Control":["no-cache"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.616579595,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796542.1994572,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45256","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.815596911,"size":1933,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796543.1575227,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"49232","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":3.250507465,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796543.2621965,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45228","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/guest/departments?include_lanes=true","headers":{"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Sec-Ch-Ua-Mobile":["?1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"Cache-Control":["no-cache"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.879355124,"size":816,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796543.3935308,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45242","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.932713044,"size":1385,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779796543.5386739,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42910","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.209077846,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796544.142658,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"53272","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":4.871618957,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796544.8066516,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45264","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":3.477523318,"size":1385,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779796545.1406865,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45238","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.736011323,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796545.149531,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42932","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Cache-Control":["no-cache"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.740212191,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796546.8907042,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45270","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.589428886,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796547.09726,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42922","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.761604911,"size":1933,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796547.6605382,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42988","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":3.314118083,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796547.9402606,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"],"X-Release-Channel":["canary"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.356454558,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796547.9613307,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43004","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Pragma":["no-cache"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.544325713,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796548.2213633,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43034","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.117336295,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796548.2426007,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42934","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.823272091,"size":1933,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779796548.4761932,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42948","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Authorization":[],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":5.136812028,"size":1385,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796548.7101204,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42972","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.366730978,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796548.8190284,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42974","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.472856455,"size":1385,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796549.0201974,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43022","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.920379546,"size":1385,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796549.030252,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42928","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Accept":["application/json, text/plain, */*"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":6.625441747,"size":1385,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796549.31007,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45228","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":6.000352697,"size":1934,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779796549.4192765,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"42960","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":6.079203641,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796547.9284532,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43010","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.411464725,"size":1933,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779796548.4468226,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43040","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":5.24017565,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796548.7835698,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"53286","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":7.525684972,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796549.745963,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43036","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":6.539695405,"size":1934,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796549.9442348,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44230","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":2.521085805,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796549.9716537,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43018","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":2.549235397,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796551.110479,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43034","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.68837976,"size":1385,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796551.2884665,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44286","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Accept":["*/*"],"Cookie":[],"Cache-Control":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.700040588,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796551.289563,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44264","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.713601068,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796552.10247,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44232","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.679141446,"size":1933,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796552.2952049,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44310","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.507960292,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796552.849573,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44322","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Pragma":["no-cache"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.058952259,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796552.8517148,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44234","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-Port":["80"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Channel":["canary"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-Host":["localhost"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.853850428,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796552.9215863,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44248","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":4.347379638,"size":1385,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796553.5254586,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44344","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":2.149067621,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796553.6986876,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44274","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.114521207,"size":1933,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796553.8883076,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44304","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":4.10472913,"size":1385,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779796554.177143,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"55576","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2863"],"Accept":["application/json"]}},"bytes_read":2863,"user_id":"","duration":5.390902668,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796554.190173,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44302","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Host":["localhost"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.429390708,"size":1933,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796554.6540658,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44332","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.278998835,"size":1385,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796554.8635652,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44376","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.473110353,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796555.2159414,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.829856608,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796555.2194483,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44348","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.841876924,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796555.9376574,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44234","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-For":["172.20.0.1"],"Cache-Control":["no-cache"],"Cookie":[],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Mode":["cors"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Ch-Ua-Platform":["\"iOS\""]}},"bytes_read":0,"user_id":"","duration":2.595030472,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796556.012937,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44354","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"Accept":["application/json, text/plain, */*"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"X-Release-Channel":["stable"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.631059614,"size":1933,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796556.689878,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"55580","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["653"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":653,"user_id":"","duration":2.50355244,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779796557.2404218,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44370","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.854526755,"size":1385,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796558.2473388,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44392","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Dest":["empty"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":5.845287161,"size":1933,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796558.9878597,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34334","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["*/*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/customers"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.116049275,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796558.9926276,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"49464","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3158"]}},"bytes_read":3158,"user_id":"","duration":4.724275831,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796560.1131442,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44376","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.252325785,"size":1385,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796560.8835747,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34346","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.007644203,"size":1931,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796561.0760782,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34368","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?1"],"Accept":["*/*"],"Cache-Control":["no-cache"],"Cookie":[],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"]}},"bytes_read":0,"user_id":"","duration":2.350355326,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779796561.0765443,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34352","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"Cache-Control":["no-cache"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":2.401135797,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796561.236087,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44374","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.375316152,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796561.2896922,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45250","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/products?final_price=false","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-For":["172.20.0.1"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":50.072256333,"size":8082,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796561.6562543,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"52820","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.703886784,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796562.0438344,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44234","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/guest/departments?include_lanes=true","headers":{"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept":["application/json, text/plain, */*"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Gpc":["1"],"X-Release-Channel":["canary"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":5.215856386,"size":816,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796562.329497,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52996","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":3.32667077,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796562.6635778,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34372","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.101123987,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796563.5945823,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34384","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["*/*"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.02624854,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796564.662477,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34410","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Cookie":[],"Sec-Gpc":["1"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.579572319,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796565.3064008,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34380","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.740522955,"size":1931,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796565.546035,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"52824","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.881481912,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796565.8042393,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34426","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.705489563,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796566.3049474,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34446","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.080196932,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796566.5642538,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/modules/self-serve/lane/wash/in-progress?lane_id=5","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Authorization":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?1"],"Cookie":[],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"]}},"bytes_read":0,"user_id":"","duration":5.25746598,"size":127,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796566.5828176,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34334","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":6.021783044,"size":1385,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796566.5942125,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34352","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/modules/self-serve/lane/wash/in-progress?lane_id=1","headers":{"Cookie":[],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.290323893,"size":127,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796566.640958,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34462","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["*/*"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":3.400267292,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796566.8405201,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34368","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/modules/self-serve/lane/wash/in-progress?lane_id=2","headers":{"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"Authorization":[],"Cache-Control":["no-cache"],"Cookie":[],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.53539937,"size":127,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796567.0381515,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34514","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["*/*"],"Pragma":["no-cache"]}},"bytes_read":0,"user_id":"","duration":2.600651411,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796567.0832803,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34396","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/modules/self-serve/lane/wash/in-progress?lane_id=6","headers":{"Sec-Ch-Ua-Mobile":["?1"],"X-Real-Ip":["172.20.0.1"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/user/wash/start"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"X-Forwarded-Proto":["http"],"Cache-Control":["no-cache"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":5.775040038,"size":127,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796567.2220078,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34420","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.135169076,"size":1931,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796567.4105067,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45250","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/modules/self-serve/lane/wash/in-progress?lane_id=3","headers":{"Cache-Control":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":6.108317011,"size":425,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796567.6259737,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34478","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Cookie":[],"Sec-Ch-Ua-Mobile":["?1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["canary"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"]}},"bytes_read":0,"user_id":"","duration":3.614302376,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796568.0009074,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53002","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":5.669990272,"size":131,"status":401,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["401 Unauthorized"]}} +{"level":"info","ts":1779796568.0363955,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"44234","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.953882966,"size":1385,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796568.1789584,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34454","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"X-Real-Ip":["172.20.0.1"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":4.949975436,"size":1931,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796568.796226,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34506","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.362693321,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796568.9284282,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34518","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.482298005,"size":1931,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779796569.0063684,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34438","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":5.782301563,"size":1385,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796569.3332512,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.900125293,"size":1385,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779796569.6932368,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34368","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":2.280938259,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796569.7142634,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45250","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Pragma":["no-cache"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.298050209,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796571.2702274,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"47142","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["617"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":617,"user_id":"","duration":3.26768948,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796571.7853265,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45426","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.264089625,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796571.9281802,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"33058","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Content-Type":["application/json"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":6.379034861,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796572.0087428,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34352","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":4.580127962,"size":1930,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779796572.0627255,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34478","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cache-Control":["no-cache"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"Pragma":["no-cache"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.69834176,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796572.2237883,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45436","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Accept":["*/*"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":2.698731588,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796572.610767,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/selfserve/washes/summary?session_id=177&vehicle_type=5","headers":{"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"X-Release-Channel":["canary"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.100422744,"size":5756,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796572.8530798,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34396","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":5.443592809,"size":1385,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796572.9577434,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45422","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":3.437006524,"size":1385,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796573.6094434,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Accept":["*/*"],"Cookie":[],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.835487852,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796574.0883727,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/departments","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.326747662,"size":1385,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796574.2025712,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45452","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.66765549,"size":1930,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779796574.6816232,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.91395466,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796574.8121662,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/auth/session","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.044128629,"size":1930,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796576.199025,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"47148","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.92742946,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779796577.3109186,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45420","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/selfserve/vehicle/allowed?lane_id=3®=EC21239&vehicle_type=5","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Cache-Control":["no-cache"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/user/wash/start"],"Pragma":["no-cache"]}},"bytes_read":0,"user_id":"","duration":9.795127199,"size":1905,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796577.3501146,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45402","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/selfserve/vehicle/allowed?lane_id=3®=EC21239&vehicle_type=5","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Cache-Control":["no-cache"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Referer":["http://localhost:5173/user/wash/start"],"Pragma":["no-cache"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?1"]}},"bytes_read":0,"user_id":"","duration":9.836777527,"size":1905,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796577.4770532,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Pragma":["no-cache"],"X-Forwarded-Host":["localhost"],"Sec-Gpc":["1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?1"]}},"bytes_read":0,"user_id":"","duration":2.793394635,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796576.2431624,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.236189455,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796576.4565532,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45404","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/selfserve/vehicle/allowed?lane_id=3®=EC21239&vehicle_type=5","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Cookie":[],"Sec-Gpc":["1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?1"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":10.828635174,"size":1905,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796576.9411068,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34478","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.724496224,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796577.3997126,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42862","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.086946686,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796577.8807793,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Gpc":["1"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.870833273,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796580.2488685,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/lanes/dynamic-image?department=6&lane=3¤t_step=0&buttons=%5B0%2C0%2C0%5D&vehicle_type=5&thumb_position=7","headers":{"Sec-Ch-Ua-Mobile":["?1"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Cookie":[],"Pragma":["no-cache"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Mode":["no-cors"],"Accept":["image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"],"Sec-Fetch-Dest":["image"]}},"bytes_read":0,"user_id":"","duration":9.501012485,"size":1259194,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["image/png"],"Content-Length":["1259194"],"Server":["Caddy"]}} +{"level":"info","ts":1779796580.8626578,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34478","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Port":["80"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Cache-Control":["no-cache"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/user/wash/start"]}},"bytes_read":0,"user_id":"","duration":2.728504122,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796581.0056477,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45420","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/department/selfserve/washes/summary?session_id=177","headers":{"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-Host":["localhost"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":5.565429399,"size":5780,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796581.574436,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/customers?page=1&limit=100&order=id:asc","headers":{"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Customer-Number":[""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":8.560779048,"size":16663,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796581.62166,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/guest/departments?include_lanes=true","headers":{"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Cookie":[],"Pragma":["no-cache"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.334420241,"size":816,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796581.662935,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":5.394612486,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796582.1416688,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"59182","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":4.738720798,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796583.232475,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":5.326067511,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796583.4406996,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.068629745,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796585.5637996,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":3.630206654,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796586.4271035,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"48302","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3156"]}},"bytes_read":3156,"user_id":"","duration":4.349481184,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779796586.626984,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42866","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["3006"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3006,"user_id":"","duration":4.482376007,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796587.5762572,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Pragma":["no-cache"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-For":["172.20.0.1"],"Cache-Control":["no-cache"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Release-Trace":["bc237215c5c4448097a216a629673315"]}},"bytes_read":0,"user_id":"","duration":4.11233508,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796587.7905612,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":2.893186125,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796589.6455495,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.064346516,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796589.6478195,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"32912","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":3.211894241,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796590.3006659,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":7.057270745,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796591.4421873,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.64318133,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796591.514125,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept":["*/*"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Cookie":[],"Pragma":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.666789102,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796591.6338787,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41862","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":4.998776521,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779796592.9952483,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.774280325,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796594.6261055,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"32920","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["164"],"Accept":["application/json"]}},"bytes_read":164,"user_id":"","duration":4.976838697,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796595.740627,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":5.429732319,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796595.7813983,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.577070709,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796596.7416759,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41872","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.844825131,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779796596.8996654,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Cookie":[],"X-Forwarded-Port":["80"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Pragma":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":2.757627,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796598.855498,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54316","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["619"],"Accept":["application/json"]}},"bytes_read":619,"user_id":"","duration":4.227967933,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796600.052288,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":4.50007661,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796600.4128451,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56262","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["650"],"Accept":["application/json"]}},"bytes_read":650,"user_id":"","duration":3.660306432,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796601.4002354,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/customers"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":5.600345131,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796602.240745,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":6.489666075,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779796602.4308267,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Cookie":[],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Cache-Control":["no-cache"]}},"bytes_read":0,"user_id":"","duration":2.951648162,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796603.496667,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/guest/departments?include_lanes=true","headers":{"Cookie":[],"Pragma":["no-cache"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.865423698,"size":816,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796603.7155275,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["*/*"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":1.978522538,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796603.7242837,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"54326","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.867386875,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796604.133516,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45420","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":2.395213766,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796604.8577275,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":3.121596435,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796605.5073273,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"52980","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":5.091006333,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796604.7872899,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53002","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":2.966226264,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796605.609766,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45420","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Gpc":["1"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.67966557,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796607.0578725,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":1.894629442,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796607.3492663,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"]}},"bytes_read":0,"user_id":"","duration":7.002818684,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779796608.156796,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.99449219,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796609.3489172,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"52980","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":4.559270283,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796610.9538682,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Cache-Control":["no-cache"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?1"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Pragma":["no-cache"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.692179234,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796612.3966885,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45420","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":1.897085073,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796612.534597,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.173295036,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796613.5106065,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.011157416,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796614.0867255,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53004","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.734931442,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796616.1889193,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Channel":["canary"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"X-Forwarded-Proto":["http"],"Sec-Gpc":["1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.601108811,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796617.1783476,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"33802","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.081205568,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779796617.7430236,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.197863708,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796617.8172338,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":1.971368437,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796619.3868117,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45420","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Authorization":[],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.545288017,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796619.7302985,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50220","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3141"]}},"bytes_read":3141,"user_id":"","duration":4.18787384,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"Server":["Caddy"]}} +{"level":"info","ts":1779796621.5358589,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Port":["80"],"Cache-Control":["no-cache"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":2.59989672,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796622.1582224,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"33810","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.716997973,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796622.571649,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/guest/departments?include_lanes=true","headers":{"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"iOS\""],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":5.486251835,"size":816,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779796623.106642,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Cache-Control":["no-cache"],"Cookie":[],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":4.123423718,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796623.20049,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.016574909,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796624.3034356,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50224","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":4.563573322,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796624.32899,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45420","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.147801634,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796624.66159,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":6.904585778,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796625.5399852,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"33662","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["653"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":653,"user_id":"","duration":3.374518795,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779796626.959888,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["canary"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-Proto":["http"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.70185673,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796629.2172737,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45420","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.704055692,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796629.869108,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.196579361,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796630.0447674,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"33580","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":5.739983623,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796630.3157227,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"40214","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":4.773161468,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796631.9288337,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.415611422,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796632.3438501,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45420","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"iOS\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Pragma":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.738377571,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796633.191913,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"33594","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":3.144746014,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779796633.8768098,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Pragma":["no-cache"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept":["*/*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":2.027253648,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796633.8768094,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.026657254,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796633.4432366,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.44853808,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796633.9261749,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":3.824217709,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796634.9119854,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Authorization":[],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":6.419603289,"size":743,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796636.1022844,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44976","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":4.796522863,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796637.3403559,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Pragma":["no-cache"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/user/wash/start"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Channel":["canary"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":4.296653688,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796638.1495306,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.862916179,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796638.885997,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.430012747,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796639.2497962,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.963691321,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796639.2814367,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44990","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["604"],"Accept":["application/json"]}},"bytes_read":604,"user_id":"","duration":3.177649575,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796641.105089,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cache-Control":["no-cache"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Site":["same-origin"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en;q=0.9"],"Cookie":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.719019471,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796643.2020583,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.576339587,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796643.8494797,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept":["application/json"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-Port":["80"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.692530731,"size":743,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779796643.863674,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.238295741,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796644.2151492,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"35658","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"Accept":["*/*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Content-Length":["76"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":4.929462364,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796644.4369583,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.5404716,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796644.6063955,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"36038","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3159"]}},"bytes_read":3159,"user_id":"","duration":4.146241065,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796647.739099,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Host":["localhost"],"Cache-Control":["no-cache"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["canary"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":4.02568674,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796647.8512468,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"36048","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":3.235379421,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779796648.0300126,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":2.060511838,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796649.0539382,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54030","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["3006"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3006,"user_id":"","duration":4.836035279,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779796649.1459625,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":3.176744897,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796650.0301778,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.580845333,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796651.1985326,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-Host":["localhost"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["canary"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.133307009,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796651.625924,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54040","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["650"],"Accept":["application/json"]}},"bytes_read":650,"user_id":"","duration":2.562472853,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796652.7951634,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"36056","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":4.942508364,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796653.3020983,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":1.989076213,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796654.4129548,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.100218171,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796654.5809264,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?1"]}},"bytes_read":0,"user_id":"","duration":4.744380505,"size":743,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796655.5788257,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Authorization":[],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Channel":["stable"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/customers"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":5.531800122,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"error","ts":1779796656.2838788,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"48506","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.487138371,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796656.8870282,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34500","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["3006"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3006,"user_id":"","duration":4.997572612,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796657.3460233,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"],"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.94530653,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796658.7633612,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.103849937,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796659.7738266,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.114756223,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796660.1873608,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34504","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.292224189,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796660.557324,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"48514","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.271937983,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796661.2296295,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.634986284,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796660.3415396,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Gpc":["1"],"Pragma":["no-cache"],"Cache-Control":["no-cache"],"Cookie":[],"Accept-Language":["en-GB,en;q=0.9"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":2.503468511,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796661.3103306,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"56690","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":2.654762091,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796662.8309052,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.205600613,"size":742,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796663.0937355,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"57504","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":4.807121847,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779796663.10845,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["*/*"],"Cache-Control":["no-cache"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Pragma":["no-cache"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.029160886,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796665.100732,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.762568162,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779796665.8362117,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Language":["en-GB,en;q=0.9"],"Cookie":[],"Cache-Control":["no-cache"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/user/wash/start"],"Pragma":["no-cache"]}},"bytes_read":0,"user_id":"","duration":2.662691266,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796667.9531019,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"57508","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":6.638859003,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796671.3596046,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Port":["80"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"]}},"bytes_read":0,"user_id":"","duration":2.843630895,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796672.7475636,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"59756","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.790794011,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796674.0835216,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json"],"Authorization":[],"Referer":["http://localhost:5173/user/wash/start"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":4.790188588,"size":743,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796675.6920114,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"59772","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":2.934715121,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796676.4990892,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Cache-Control":["no-cache"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Dest":["empty"],"Pragma":["no-cache"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":2.650139495,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796679.239494,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"40084","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3159"],"Accept":["application/json"]}},"bytes_read":3159,"user_id":"","duration":4.113192337,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796680.0602398,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"59788","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["2863"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2863,"user_id":"","duration":4.103981555,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796681.6560328,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/user/wash/start"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Pragma":["no-cache"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.465615663,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796682.1942058,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50274","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":2.944197953,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796684.57703,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"49440","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":4.508476536,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779796684.6921825,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Pragma":["no-cache"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.732699024,"size":743,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796686.5995107,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50288","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":4.403972388,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796687.0990083,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/user/wash/start"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.585264839,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796689.3345394,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"55346","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":4.754650031,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796689.8986576,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"50300","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":5.184299786,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796690.894421,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Accept":["application/json, text/plain, */*"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Channel":["canary"],"Sec-Fetch-Mode":["cors"],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.930196861,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796692.9202516,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cache-Control":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":2.706183981,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796693.609641,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["application/json"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"X-Release-Trace":["bc237215c5c4448097a216a629673315"]}},"bytes_read":0,"user_id":"","duration":4.866722011,"size":743,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796695.7199023,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Sec-Ch-Ua-Mobile":["?1"],"X-Forwarded-Host":["localhost"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"iOS\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.41586073,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796696.12233,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"43092","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":6.222136521,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796699.3459296,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"37472","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["604"],"Accept":["application/json"]}},"bytes_read":604,"user_id":"","duration":3.221844932,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796701.5687327,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Pragma":["no-cache"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Mobile":["?1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Cookie":[],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"iOS\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":2.934311932,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796703.9478633,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?1"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Platform":["\"iOS\""],"User-Agent":["Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1"],"Accept":["application/json"],"Pragma":["no-cache"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":4.542328586,"size":743,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796704.05264,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"59164","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3160"]}},"bytes_read":3160,"user_id":"","duration":4.578394975,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796704.0731452,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"47912","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"User-Agent":["node"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":4.723241449,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796706.097686,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.122356778,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796706.9064991,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"59174","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":2.842631421,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796708.0181065,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"37478","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["3006"],"Accept":["application/json"]}},"bytes_read":3006,"user_id":"","duration":3.941939633,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796711.3440876,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58686","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.318154293,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779796711.5727737,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"56742","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":4.66478074,"size":131,"status":401,"resp_headers":{"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796712.278287,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.969007475,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796714.2917247,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.111608105,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"error","ts":1779796714.714667,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"56756","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["619"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":619,"user_id":"","duration":3.14048067,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796715.0393372,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"X-Forwarded-Host":["localhost"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":4.954720965,"size":743,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779796717.0598469,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Authorization":[],"Cookie":[],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.878359925,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796717.2608786,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":2.606012644,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796717.7094858,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.529892368,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796717.7238579,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"58694","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":6.116984273,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796717.1476192,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.978817004,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796717.2871366,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"56768","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.468923038,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796719.0366216,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"47232","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.202825224,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"error","ts":1779796720.3248153,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"60056","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":3.035848224,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796720.7482626,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.576163332,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779796720.8794222,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.778616503,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796721.8824697,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":6.046605338,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796722.4571648,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["*/*"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.110493775,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796723.5553424,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"]}},"bytes_read":0,"user_id":"","duration":3.207848593,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796724.0056703,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"58776","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["76"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":4.96533171,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779796724.6807444,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"58782","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept-Language":["*"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":4.353015766,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779796725.052632,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Authorization":[],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":6.172131943,"size":743,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796725.6503472,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Accept":["application/json, text/plain, */*"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":3.750607169,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796726.4129553,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Cookie":[],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":2.979156444,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796727.5143816,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":6.739067592,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796727.5148642,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":2.669546936,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796729.2581854,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"44010","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["2863"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2863,"user_id":"","duration":4.574504519,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779796729.7567303,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"]}},"bytes_read":0,"user_id":"","duration":4.090552809,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796731.48538,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":2.724479269,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796732.3937938,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"44024","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["653"],"Accept":["application/json"]}},"bytes_read":653,"user_id":"","duration":3.127755256,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796733.1147056,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.096505759,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796734.223962,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":3.206043971,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796734.316409,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Cache-Control":["no-cache"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.769697741,"size":743,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796734.7391675,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":7.213056598,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796736.9922178,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.893725916,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796737.556903,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"44040","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":4.89915252,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796740.0510771,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.710019333,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796740.3367603,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.585082195,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796740.4844866,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.142786937,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796740.6512942,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52852","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3157"]}},"bytes_read":3157,"user_id":"","duration":4.61655552,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796740.745454,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"48992","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["653"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":653,"user_id":"","duration":3.180467972,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779796742.4964535,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/user/wash/start"]}},"bytes_read":0,"user_id":"","duration":3.053024404,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796743.6976924,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52860","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":3.03815756,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796743.9943113,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.310689094,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796744.8687682,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":4.656831138,"size":743,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796745.1171122,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Gpc":["1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":3.433906569,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796745.8014553,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"43548","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"]}},"bytes_read":76,"user_id":"","duration":5.052463689,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796745.8401797,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.488176969,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796746.851558,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"52876","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["163"],"Accept":["application/json"]}},"bytes_read":163,"user_id":"","duration":5.038645942,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796747.3493257,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":4.465051638,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796747.3739278,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.241463769,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796748.4856718,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.354802959,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796749.8818233,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.913255286,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796750.4137752,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"47600","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":3.560495069,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796751.2950773,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"]}},"bytes_read":0,"user_id":"","duration":3.06501216,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796752.5080082,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.037408397,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796752.7447398,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Accept":["*/*"],"Cookie":[],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.274770222,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796754.0401397,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":3.571162642,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796754.4780924,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"47612","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.062987649,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796755.1112974,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Cache-Control":["no-cache"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Authorization":[],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":6.114282166,"size":743,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796755.3829317,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.484571915,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796757.6076965,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44698","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.127668335,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779796757.8555572,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":2.043698018,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796757.8617265,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":4.300171078,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796759.088045,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.27708855,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796760.7048428,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"49484","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3159"]}},"bytes_read":3159,"user_id":"","duration":4.757429198,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796761.98152,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.089504956,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796762.872711,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Channel":["stable"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":7.465629808,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796763.1833935,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"34490","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":5.572628656,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796764.3083093,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.171761255,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796766.244285,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"49490","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":5.528098286,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796768.060359,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56358","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":5.448246,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796769.4120784,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Channel":["canary"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":5.179959654,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796769.546496,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.069344306,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796769.6818018,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":8.546021239,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796771.3327065,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"45248","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":5.086983932,"size":131,"status":401,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796773.851295,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56374","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["650"],"Accept":["application/json"]}},"bytes_read":650,"user_id":"","duration":5.782869349,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796774.0015595,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":11.116626548,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796773.067068,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":15.301141064,"size":743,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779796775.0005596,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":7.321407689,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796775.7803342,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/superuser/customers"]}},"bytes_read":0,"user_id":"","duration":5.853430128,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796777.194272,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"45264","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":7.755947,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796778.734359,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Cookie":[],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":3.724000344,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796779.2353106,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"]}},"bytes_read":0,"user_id":"","duration":11.427535485,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796779.9412403,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":4.151322942,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796780.2106051,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"59536","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":7.990343566,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796783.0391257,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"45354","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Content-Length":["100"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":100,"user_id":"","duration":5.840784804,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796783.0885465,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.494588774,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796783.2468905,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":11.129248241,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796784.6677406,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"53178","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":4.448758529,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796784.7942314,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"Cookie":[],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":6.051485462,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796784.8495152,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.583152349,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796785.250995,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json"],"Cache-Control":["no-cache"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"]}},"bytes_read":0,"user_id":"","duration":6.117805619,"size":743,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779796786.178566,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45486","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Cache-Control":["no-cache"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept":["*/*"]}},"bytes_read":0,"user_id":"","duration":5.585065664,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796786.957175,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.154592794,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796787.8238034,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"59528","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":4.782798243,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796787.9197407,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.822516807,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796788.089282,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Cookie":[],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.218611195,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796788.7857304,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.525643592,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796789.1774144,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"56756","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Connection":["keep-alive"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":4.506531889,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796791.840429,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":2.813573213,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796791.873047,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Authorization":[],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":3.758071538,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796792.7453024,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"56758","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["*"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":76,"user_id":"","duration":4.918054678,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796793.2140322,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.775552955,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796794.2654955,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":5.468876722,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796795.9354315,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":4.036406716,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779796796.2928746,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Mobile":["?0"],"Accept":["application/json"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Pragma":["no-cache"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Cache-Control":["no-cache"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":6.493220111,"size":743,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779796796.999968,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.642111452,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796799.0321202,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"57274","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":6.284350101,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796800.4354148,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.831956388,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796800.9173255,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":4.313798125,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796801.5799112,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Cookie":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":7.300538769,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779796802.4921496,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"57284","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Type":["application/json"],"Content-Length":["653"],"Accept":["application/json"]}},"bytes_read":653,"user_id":"","duration":3.45212389,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796802.5846503,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.894701152,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796802.0904214,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.043068615,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796803.2150347,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.168641112,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796803.5951326,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":5.00826472,"size":743,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"error","ts":1779796804.0526888,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"57324","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["3157"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3157,"user_id":"","duration":4.733645122,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796804.922444,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":5.21516856,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796805.894939,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"45978","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":5.026288343,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796806.2133482,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":3.073480284,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796807.4050891,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":2.017282892,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796807.4482682,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"57332","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["671"],"Accept":["application/json"]}},"bytes_read":671,"user_id":"","duration":3.38751088,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796808.6656678,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.278742335,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796809.1747956,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"45994","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["653"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":653,"user_id":"","duration":3.272350458,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796810.1919856,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-For":["172.20.0.1"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":5.258762149,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796812.1960185,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"57340","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":4.746390692,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796812.5910704,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.125449666,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796812.6852572,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43736","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["*/*"],"Cache-Control":["no-cache"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":1.967514386,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796813.0442865,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.326718518,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796813.7789779,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.061351806,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796813.7874815,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"]}},"bytes_read":0,"user_id":"","duration":4.530843618,"size":742,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"error","ts":1779796813.8742785,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"42990","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"User-Agent":["node"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"]}},"bytes_read":76,"user_id":"","duration":4.69611051,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779796816.5111442,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":2.711469927,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796817.0360398,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"51294","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["617"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":617,"user_id":"","duration":4.838504666,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796817.3128426,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Channel":["stable"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":7.107469756,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796818.1201284,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":2.068785589,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796819.2281468,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":3.178757647,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796821.6859422,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"51310","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.648034407,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796821.967468,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Cookie":[],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":2.822592551,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796822.907312,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.550871493,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779796823.3887875,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43736","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":1.989197997,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796824.4893115,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.09322413,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796824.7397645,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json"]}},"bytes_read":0,"user_id":"","duration":4.824799335,"size":742,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779796824.9593763,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"59456","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["604"],"Accept":["application/json"]}},"bytes_read":604,"user_id":"","duration":3.271258293,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779796828.3781374,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/user/wash/start"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":3.887266551,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796828.545112,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.623887856,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796828.6744804,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43736","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":1.938681456,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796829.6919422,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"55940","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":4.729795286,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796829.7918513,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.058016485,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796830.406309,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35698","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3162"]}},"bytes_read":3162,"user_id":"","duration":4.507673172,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796830.525419,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":2.597415757,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796831.6695166,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37618","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":3.147660412,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779796832.1921718,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Port":["80"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":2.010960695,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796832.3244286,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"57190","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":4.526392438,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796832.392336,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":5.731016545,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779796833.3496096,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.168354323,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796833.458656,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43736","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.755422251,"size":743,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796835.728876,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.455476659,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796836.4377306,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"37634","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":4.76681263,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796836.6719441,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"57204","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":4.338904279,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796837.4735358,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":1.960237864,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796837.6896853,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.285691992,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796838.5806956,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43736","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.067903383,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796840.1834137,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"38320","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":3.744099642,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779796841.9447014,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"43736","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.344869153,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796842.50317,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56368","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":5.569628226,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779796843.240615,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":2.37844845,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796844.1493444,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":6.44787849,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779796844.2809033,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.421283824,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796844.4486167,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"]}},"bytes_read":0,"user_id":"","duration":5.077868374,"size":742,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796845.0228896,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"38328","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.837680704,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796845.548632,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"Cookie":[],"Pragma":["no-cache"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":4.687271387,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796846.4368947,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":2.497875435,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796847.1762547,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56376","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":4.663605988,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796848.2161229,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.025054885,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796848.3187861,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"38340","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":3.294621437,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779796849.3131137,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.124539053,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796849.5636103,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.402365876,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796851.9721532,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Gpc":["1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["canary"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.701391902,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796852.1899924,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"49458","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":5.010306628,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779796853.5181465,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"49474","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"Connection":["keep-alive"],"Accept":["*/*"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.195594239,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796853.8151968,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.290244242,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796854.934999,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.411081534,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796855.113387,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.069797514,"size":743,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796855.2186491,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":5.644402686,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796857.4651763,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.851366801,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796858.6089427,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"33434","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Type":["application/json"],"Content-Length":["2863"],"Accept":["application/json"]}},"bytes_read":2863,"user_id":"","duration":5.087958666,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796859.00832,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.660331726,"size":505,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"error","ts":1779796859.9443703,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"55000","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.211763076,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796860.8643212,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Channel":["canary"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Cookie":[],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":2.811916727,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796863.9073079,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":5.068180026,"size":742,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796871.17224,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"55008","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["2863"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2863,"user_id":"","duration":10.965522547,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796872.8804817,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44714","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3141"]}},"bytes_read":3141,"user_id":"","duration":10.548909273,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796874.8213434,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"44586","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":3.641452382,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779796875.0178761,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":3.237362147,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796876.4935753,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"49756","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["671"]}},"bytes_read":671,"user_id":"","duration":3.601756523,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779796877.9784093,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":2.946652473,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796880.057619,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"59184","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.232854498,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796881.4660618,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":3.480451663,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796881.616179,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38846","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":5.120337536,"size":131,"status":401,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["401 Unauthorized"]}} +{"level":"info","ts":1779796884.3448105,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Cookie":[],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":2.863516644,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796884.7851124,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38854","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":3.167185589,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779796885.908976,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Real-Ip":["172.20.0.1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":5.723066739,"size":742,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796885.2752814,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":2.423052234,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796887.2176816,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34376","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":4.32516033,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796891.1168497,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34382","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.897786208,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779796891.3967268,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":3.209558634,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796894.845155,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.881187279,"size":742,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"error","ts":1779796896.3560412,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"35032","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3164"]}},"bytes_read":3164,"user_id":"","duration":6.161317988,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796897.331288,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"51676","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":6.207544924,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796898.6805544,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.90572547,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796898.6928928,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["*/*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":2.918759226,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796898.893928,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"X-Release-Channel":["canary"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Cookie":[],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":5.375977217,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796899.51951,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":3.748919252,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796899.9098518,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"41436","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":3.539304417,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796901.3777006,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"47858","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":5.249155927,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796901.3936057,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.621796675,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796902.7880528,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":3.88613464,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796905.2060924,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"47866","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":3.814367844,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796905.4165852,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept":["application/json"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Pragma":["no-cache"]}},"bytes_read":0,"user_id":"","duration":5.781339164,"size":742,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796905.5335877,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"41444","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Content-Type":["application/json"],"Content-Length":["164"],"Accept":["application/json"]}},"bytes_read":164,"user_id":"","duration":5.621739505,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796907.5152617,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":3.328643502,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796909.253135,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"34106","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["619"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":619,"user_id":"","duration":3.717391532,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796913.0771465,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Cookie":[],"X-Release-Channel":["canary"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.543041581,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796913.3003123,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"51522","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":7.82441626,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796914.8746653,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"34112","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":5.620017538,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796916.5118103,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["canary"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"X-Forwarded-Port":["80"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":3.537166859,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796916.5141096,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"47914","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":3.523290818,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796916.6503966,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Gpc":["1"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":8.23728551,"size":742,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796916.9501941,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"56540","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":5.526516554,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796922.3084733,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"46688","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Accept-Encoding":["gzip, deflate"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Content-Length":["76"],"Connection":["keep-alive"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":76,"user_id":"","duration":5.790189008,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796922.6211703,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"46700","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":5.666355646,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796923.1242306,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":4.805712669,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796924.037999,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"X-Frontend-Version":["a952dd2c"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"]}},"bytes_read":0,"user_id":"","duration":4.953801933,"size":740,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779796927.7030883,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.066872535,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796928.1558785,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42420","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["2863"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":2863,"user_id":"","duration":5.843628939,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779796932.7718055,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42432","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":4.607312435,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796932.8432853,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Cookie":[],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Language":["en-GB,en;q=0.9"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":3.852115711,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796933.237411,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37782","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"Cookie":[],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":2.296634301,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796934.5030375,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Cookie":[],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":3.572638999,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796936.5584226,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"Authorization":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":5.627148867,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779796936.844203,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":5.904271197,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796937.799729,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Pragma":["no-cache"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":8.040856934,"size":742,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"error","ts":1779796940.3551044,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"59356","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3139"]}},"bytes_read":3139,"user_id":"","duration":6.369289478,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779796940.958085,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37782","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Cookie":[],"Referer":["http://localhost:5173/user/wash/start"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"]}},"bytes_read":0,"user_id":"","duration":6.646219436,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796941.5884511,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.641412482,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796942.0643852,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"42436","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":9.016619038,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796942.5721974,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":7.886883311,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796943.292129,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":8.321510463,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796944.7206745,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"50766","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":4.537681644,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"Server":["Caddy"]}} +{"level":"info","ts":1779796945.1204574,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":6.569475136,"size":742,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796945.4546826,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"59358","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Length":["671"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":671,"user_id":"","duration":6.978890974,"size":72,"status":404,"resp_headers":{"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796946.0439467,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37782","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":6.952212253,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796947.3649023,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":4.060284293,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796947.6097672,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":7.871803489,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796949.5330691,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":6.934029622,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779796949.9033606,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37782","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/user/wash/start"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Cookie":[]}},"bytes_read":0,"user_id":"","duration":3.845483825,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796950.715708,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.34151393,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796950.741534,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"60946","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"]}},"bytes_read":76,"user_id":"","duration":6.014021963,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"error","ts":1779796950.9873133,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"47612","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":5.531153766,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["401 Unauthorized"]}} +{"level":"info","ts":1779796952.0697615,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":4.432111825,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796952.8479617,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37782","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Language":["en-GB,en;q=0.9"],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":2.931738438,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796953.8292325,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.102550248,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796954.1649137,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Authorization":[],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":4.954082514,"size":743,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796955.2881584,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":5.737588609,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796956.2727234,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38452","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":5.283152572,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796956.285423,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":4.195245476,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796958.7145493,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":3.517310575,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796958.976578,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37782","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.201243679,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796961.8336437,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":6.52301616,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796962.8009443,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37782","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Language":["en-GB,en;q=0.9"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":3.688583247,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796963.1975818,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":2.659537323,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796963.262932,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cache-Control":["no-cache"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":2.720254728,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796963.7582855,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":7.448579977,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796964.1115289,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38462","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":7.837497979,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796965.3292499,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Gpc":["1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"]}},"bytes_read":0,"user_id":"","duration":5.443312456,"size":743,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779796967.4046562,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"38738","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.291613171,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796967.6672246,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53098","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Content-Length":["3161"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3161,"user_id":"","duration":4.890554802,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796967.7355974,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":3.95348242,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796967.7400415,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":5.894927996,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779796968.5670595,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.708241508,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796968.7170806,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":4.271954461,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796970.1198387,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"53100","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Content-Length":["674"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":674,"user_id":"","duration":2.441716783,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796969.5530236,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":3.67473479,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796971.1925743,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":5.307665609,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796972.806414,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":4.918524354,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796973.3104463,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"51012","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":7.787625334,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779796973.8234887,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Dest":["empty"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"]}},"bytes_read":0,"user_id":"","duration":4.508296883,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796975.131337,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.539192835,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796975.6004016,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Pragma":["no-cache"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"],"Authorization":[],"Cache-Control":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":6.927233461,"size":743,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779796976.6822927,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Channel":["canary"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.461233378,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796977.2668533,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"47624","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["164"]}},"bytes_read":164,"user_id":"","duration":9.029794463,"size":131,"status":401,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796978.1770756,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Frontend-Version":["a952dd2c"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":3.536176942,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796978.3465884,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Accept":["application/json, text/plain, */*"],"Authorization":[],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":7.138311506,"size":505,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"error","ts":1779796978.9384303,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"37540","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Content-Length":["3006"],"Accept":["application/json"],"Content-Type":["application/json"]}},"bytes_read":3006,"user_id":"","duration":5.624837512,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779796980.6622467,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":5.498582112,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796982.8507283,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"38050","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["619"]}},"bytes_read":619,"user_id":"","duration":5.582460467,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779796983.1640844,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":4.610282831,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796983.3691688,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":2.555718193,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796983.6866014,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46100","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["650"]}},"bytes_read":650,"user_id":"","duration":4.720482358,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796984.4544694,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.641180496,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796985.2957103,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Forwarded-For":["172.20.0.1"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/user/wash/start"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json"],"Authorization":[],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"]}},"bytes_read":0,"user_id":"","duration":5.952599006,"size":742,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779796987.3898153,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/user/wash/start"],"X-Frontend-Version":["a952dd2c"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":3.496290897,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796988.9836452,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""]}},"bytes_read":0,"user_id":"","duration":10.622782557,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796990.1147227,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"46110","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":6.154797874,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796990.1504672,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":3.998492225,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796991.5365827,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/customers"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":5.388149083,"size":83,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"error","ts":1779796991.7827084,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"38062","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":8.930227011,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796995.24283,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Cookie":[],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":6.003451351,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779796995.9159822,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"44488","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["650"],"Accept":["application/json"]}},"bytes_read":650,"user_id":"","duration":5.787517248,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796995.99006,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Cookie":[],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.463400928,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779796996.4812458,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"56320","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["606"]}},"bytes_read":606,"user_id":"","duration":4.696137904,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796997.9000251,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":7.881116116,"size":743,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779796998.511588,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Authorization":[],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":9.509871689,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796998.6649704,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":6.874971206,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796998.6131456,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/user/wash/start"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.175998561,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779796997.746231,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"37782","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Cache-Control":["no-cache"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":8.107487889,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779796999.045625,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Channel":["stable"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":3.836682595,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779797001.2692428,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"42130","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Accept":["*/*"],"Accept-Language":["*"],"User-Agent":["node"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Sec-Fetch-Mode":["cors"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"]}},"bytes_read":76,"user_id":"","duration":7.203388147,"size":108,"status":500,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779797001.7611086,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Sec-Fetch-Mode":["cors"],"Referer":["http://localhost:5173/superuser/customers"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":4.944277781,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"]}} +{"level":"info","ts":1779797002.9189596,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"Cookie":[],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.905170915,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779797003.7939885,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":7.156334526,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779797004.2565928,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"42132","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"],"Content-Length":["76"],"Connection":["keep-alive"],"Content-Type":["application/json"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"]}},"bytes_read":76,"user_id":"","duration":9.656361259,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779797005.344592,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Referer":["http://localhost:5173/superuser/customers"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.030156199,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779797006.7439163,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"X-Frontend-Version":["a952dd2c"],"Authorization":[],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":7.941107794,"size":743,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779797008.146562,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.792057829,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779797009.9692035,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":4.358922678,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779797010.03344,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Gpc":["1"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":8.199695985,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779797010.6220503,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"55632","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":6.360334305,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779797011.4982202,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Authorization":[],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":7.573849866,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779797013.1557848,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["canary"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"]}},"bytes_read":0,"user_id":"","duration":4.469580395,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779797014.8942604,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Frontend-Version":["a952dd2c"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.912236674,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779797015.1404707,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"43442","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":4.50512842,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779797015.3018122,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.223307873,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779797016.0687647,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Authorization":[]}},"bytes_read":0,"user_id":"","duration":6.598926597,"size":742,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779797018.7934592,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Referer":["http://localhost:5173/user/wash/start"],"X-Release-Channel":["canary"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":4.776163148,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779797019.1912463,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":7.615726947,"size":505,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779797020.0238256,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":4.578013885,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779797020.191217,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Cookie":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/customers"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.808469794,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779797020.379761,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"33812","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3151"]}},"bytes_read":3151,"user_id":"","duration":7.06301926,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779797021.3047805,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"47836","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["2863"]}},"bytes_read":2863,"user_id":"","duration":5.89109461,"size":108,"status":500,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779797024.5035362,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56852","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Cookie":[],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Release-Channel":["canary"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.136582502,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779797025.3148081,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56862","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"]}},"bytes_read":0,"user_id":"","duration":4.52031742,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779797025.3415446,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/superuser/releases/timeline/sessions?limit=100","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":6.511193016,"size":5425,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779797025.625232,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42266","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Content-Type":["application/json"],"Content-Length":["671"],"Accept":["application/json"]}},"bytes_read":671,"user_id":"","duration":5.232516389,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779797025.7200642,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Sec-Gpc":["1"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"]}},"bytes_read":0,"user_id":"","duration":5.489335701,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779797025.9333966,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"47848","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["653"]}},"bytes_read":653,"user_id":"","duration":4.605363921,"size":72,"status":404,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"]}} +{"level":"info","ts":1779797026.881133,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Forwarded-For":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":6.728743799,"size":743,"status":200,"resp_headers":{"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"]}} +{"level":"info","ts":1779797025.7358372,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Frontend-Version":["a952dd2c"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":8.410449633,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779797025.7391212,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/superuser/releases/timeline?limit=100","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":8.787145327,"size":4714,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779797027.9679449,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56852","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":5.16419797,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779797028.3532507,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56862","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"Cookie":[],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"Cache-Control":["no-cache"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["*/*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"]}},"bytes_read":0,"user_id":"","duration":4.902241022,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779797029.1229494,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":4.844201846,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779797031.454435,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54112","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/operations/next","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["163"]}},"bytes_read":163,"user_id":"","duration":7.70773053,"size":131,"status":401,"resp_headers":{"Server":["Caddy"],"Status":["401 Unauthorized"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779797032.1542065,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"48734","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/108/validate","headers":{"Sec-Fetch-Mode":["cors"],"User-Agent":["node"],"Content-Length":["76"],"Accept-Language":["*"],"Accept-Encoding":["gzip, deflate"],"Connection":["keep-alive"],"Content-Type":["application/json"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"Accept":["*/*"]}},"bytes_read":76,"user_id":"","duration":8.096572707,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779797033.520128,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"X-Frontend-Version":["a952dd2c"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"Authorization":[],"Cookie":[],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"]}},"bytes_read":0,"user_id":"","duration":7.759787458,"size":505,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779797033.7994635,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56852","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Cookie":[],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":5.644720668,"size":101,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779797034.422969,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":10.449564742,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779797035.023995,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Sec-Fetch-Dest":["empty"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"Accept-Encoding":["gzip, deflate, br, zstd"]}},"bytes_read":0,"user_id":"","duration":4.343034508,"size":101,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"error","ts":1779797036.0877538,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"54114","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["617"]}},"bytes_read":617,"user_id":"","duration":4.630328279,"size":72,"status":404,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779797037.6067407,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56852","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Site":["same-origin"],"X-Release-Channel":["canary"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":3.797502635,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779797038.6842587,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Pragma":["no-cache"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Fetch-Dest":["empty"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cache-Control":["no-cache"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":9.743097339,"size":743,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779797040.3467827,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"]}},"bytes_read":0,"user_id":"","duration":5.89665912,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779797040.3594162,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"X-Release-Channel":["stable"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":6.818414848,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779797040.6030807,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":4.863259765,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779797042.9561918,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["canary"]}},"bytes_read":0,"user_id":"","duration":4.143899002,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779797045.0529506,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"X-Forwarded-Port":["80"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":4.683602862,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779797045.508304,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"42878","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/commands/poll","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["100"]}},"bytes_read":100,"user_id":"","duration":9.41664539,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779797045.6374054,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"Sec-Gpc":["1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":4.569469286,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779797046.7878234,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56846","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/superuser/releases","headers":{"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Real-Ip":["172.20.0.1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Fetch-Site":["same-origin"]}},"bytes_read":0,"user_id":"","duration":29.831636838,"size":35041,"status":200,"resp_headers":{"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779797046.817164,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["stable"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept":["application/json, text/plain, */*"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":6.444343728,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779797048.0810876,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56852","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Accept":["application/json"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cache-Control":["no-cache"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-For":["172.20.0.1"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"]}},"bytes_read":0,"user_id":"","duration":8.48836714,"size":742,"status":200,"resp_headers":{"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"],"X-Powered-By":["PHP/8.2.15"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779797048.173425,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Accept-Language":["en-GB,en;q=0.9"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept":["application/json, text/plain, */*"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["canary"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""]}},"bytes_read":0,"user_id":"","duration":4.030875942,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779797048.951173,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"34562","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["604"]}},"bytes_read":604,"user_id":"","duration":3.440243842,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779797050.181675,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"X-Forwarded-Port":["80"],"X-Release-Channel":["stable"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":3.787429484,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779797051.1243749,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"43662","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3164"]}},"bytes_read":3164,"user_id":"","duration":6.929076611,"size":108,"status":500,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Status":["500 Internal Server Error"]}} +{"level":"info","ts":1779797052.343859,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/superuser/releases/config","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Dest":["empty"],"X-Real-Ip":["172.20.0.1"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"]}},"bytes_read":0,"user_id":"","duration":5.376546671,"size":481,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779797052.5063605,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Accept":["application/json, text/plain, */*"],"Cookie":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Dest":["empty"],"X-Forwarded-For":["172.20.0.1"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"X-Forwarded-Host":["localhost"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"]}},"bytes_read":0,"user_id":"","duration":7.34176452,"size":83,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779797052.8831558,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56846","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/superuser/releases/github/branches?repository=copenhagentruckwash%2Fapi","headers":{"Accept":["application/json, text/plain, */*"],"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"]}},"bytes_read":0,"user_id":"","duration":5.916601982,"size":425,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779797053.437711,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45472","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/superuser/releases/github/branches?repository=copenhagentruckwash%2Fpleno-vue","headers":{"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Cookie":[],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Site":["same-origin"],"Sec-Gpc":["1"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Port":["80"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Forwarded-For":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":6.471313308,"size":687,"status":200,"resp_headers":{"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"]}} +{"level":"info","ts":1779797055.2863243,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"47140","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/orders?filters=customer_id:777&page=1&limit=1&search=&order=id:DESC","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Channel":["stable"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"Authorization":[],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":8.316825569,"size":505,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"info","ts":1779797053.8378608,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Accept-Language":["en-GB,en;q=0.9"],"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Port":["80"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Proto":["http"],"X-Release-Channel":["canary"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Server":["06ef1c445ff3"]}},"bytes_read":0,"user_id":"","duration":6.192614053,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779797055.3741553,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56852","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Proto":["http"],"X-Real-Ip":["172.20.0.1"],"X-Release-Channel":["stable"],"X-Forwarded-Port":["80"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Host":["localhost"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":[],"X-Forwarded-Server":["06ef1c445ff3"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Frontend-Version":["a952dd2c"]}},"bytes_read":0,"user_id":"","duration":5.515590542,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779797055.3754063,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45460","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/release/runtime","headers":{"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"Accept":["application/json"],"Accept-Language":["en-GB,en;q=0.9"],"Pragma":["no-cache"],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Authorization":[],"Cache-Control":["no-cache"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Proto":["http"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"]}},"bytes_read":0,"user_id":"","duration":6.986244924,"size":742,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"]}} +{"level":"error","ts":1779797055.4219072,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.3","remote_port":"43672","client_ip":"172.20.0.3","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/108/logs","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["674"]}},"bytes_read":674,"user_id":"","duration":6.167586258,"size":72,"status":404,"resp_headers":{"Server":["Caddy"],"Status":["404 Not Found"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779797055.5177839,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.4","remote_port":"41642","client_ip":"172.20.0.4","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/internal/gateways/84/validate","headers":{"Content-Type":["application/json"],"Accept":["*/*"],"Accept-Language":["*"],"Sec-Fetch-Mode":["cors"],"X-Edge-Broker-Secret":["truckwash-edge-dev"],"User-Agent":["node"],"Accept-Encoding":["gzip, deflate"],"Content-Length":["76"],"Connection":["keep-alive"]}},"bytes_read":76,"user_id":"","duration":8.449767677,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Server":["Caddy"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779797055.967511,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"45492","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"Cookie":[],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Sec-Ch-Ua-Mobile":["?0"],"X-Real-Ip":["172.20.0.1"],"Cache-Control":["no-cache"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Pragma":["no-cache"],"Sec-Gpc":["1"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-For":["172.20.0.1"],"X-Forwarded-Host":["localhost"],"Accept":["*/*"],"X-Forwarded-Proto":["http"],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":5.474018001,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"info","ts":1779797057.391409,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"56846","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/order-bookings/counts","headers":{"Cookie":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Site":["same-origin"],"X-Forwarded-Server":["06ef1c445ff3"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Authorization":[],"X-Frontend-Version":["a952dd2c"],"X-Release-Trace":["4d1e5bc10e3a2d299074beb75af707b0"],"Sec-Fetch-Mode":["cors"],"X-Forwarded-For":["172.20.0.1"],"X-Real-Ip":["172.20.0.1"],"Accept":["application/json, text/plain, */*"],"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-Proto":["http"],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Gpc":["1"],"X-Forwarded-Host":["localhost"],"X-Release-Channel":["stable"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Port":["80"]}},"bytes_read":0,"user_id":"","duration":6.356286044,"size":83,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} +{"level":"info","ts":1779797058.0667224,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"49558","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/ping","headers":{"X-Forwarded-Host":["localhost"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Platform":["\"Windows\""],"X-Forwarded-For":["172.20.0.1"],"Sec-Fetch-Site":["same-origin"],"X-Release-Trace":["bc237215c5c4448097a216a629673315"],"Accept":["application/json, text/plain, */*"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["empty"],"Sec-Fetch-Mode":["cors"],"Sec-Gpc":["1"],"X-Forwarded-Port":["80"],"X-Release-Channel":["canary"],"Cookie":[],"Referer":["http://localhost:5173/user/wash/start"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"X-Frontend-Version":["a952dd2c"],"X-Real-Ip":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-GB,en;q=0.9"]}},"bytes_read":0,"user_id":"","duration":4.205898679,"size":101,"status":200,"resp_headers":{"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"]}} +{"level":"error","ts":1779797059.2090766,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.2","remote_port":"41626","client_ip":"172.20.0.2","proto":"HTTP/1.1","method":"POST","host":"caddy","uri":"/edge-agent/gateways/84/heartbeat","headers":{"Accept":["application/json"],"Content-Type":["application/json"],"Content-Length":["3006"]}},"bytes_read":3006,"user_id":"","duration":7.137773506,"size":108,"status":500,"resp_headers":{"Status":["500 Internal Server Error"],"X-Powered-By":["PHP/8.2.15"],"Content-Type":["application/json; charset=utf-8"],"Server":["Caddy"]}} +{"level":"info","ts":1779797060.8952808,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"172.20.0.12","remote_port":"34388","client_ip":"172.20.0.12","proto":"HTTP/1.1","method":"GET","host":"localhost","uri":"/superuser/releases/github/repositories","headers":{"Referer":["http://localhost:5173/superuser/configuration/releases/overview"],"Sec-Ch-Ua":["\"Chromium\";v=\"148\", \"Brave\";v=\"148\", \"Not/A)Brand\";v=\"99\""],"Accept-Language":["en-GB,en-US;q=0.9,en;q=0.8,da;q=0.7"],"Sec-Fetch-Dest":["empty"],"X-Forwarded-Host":["localhost"],"X-Forwarded-Port":["80"],"X-Forwarded-Proto":["http"],"X-Forwarded-Server":["06ef1c445ff3"],"Accept":["application/json, text/plain, */*"],"Authorization":[],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"Windows\""],"Sec-Gpc":["1"],"X-Forwarded-For":["172.20.0.1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36"],"Cookie":[],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"X-Real-Ip":["172.20.0.1"]}},"bytes_read":0,"user_id":"","duration":10.167296842,"size":693,"status":200,"resp_headers":{"Content-Type":["application/json; charset=utf-8"],"Content-Encoding":["gzip"],"Vary":["Accept-Encoding"],"Server":["Caddy"],"X-Powered-By":["PHP/8.2.15"]}} diff --git a/services/nginx/app/.phpunit.cache/test-results b/services/nginx/app/.phpunit.cache/test-results index d267e510..cc002f34 100644 --- a/services/nginx/app/.phpunit.cache/test-results +++ b/services/nginx/app/.phpunit.cache/test-results @@ -1 +1 @@ -{"version":"pest_3.8.6","defects":{"P\\Tests\\Unit\\Selfserve\\SelfserveOpenApiSpecTest::__pest_evaluable_it_documents_self_serve_machine_type__eligibility__summary__and_webhook_endpoints":1,"P\\Tests\\Unit\\Selfserve\\SelfserveOpenApiSpecTest::__pest_evaluable_it_defines_reusable_self_serve_wash_and_machine_type_schemas":1,"P\\Tests\\Unit\\Invoicing\\EconomicV2BookedDepartment75DistributionTest::__pest_evaluable_it_redistributes_booked_department_75_net_amounts_using_fixed_pricing_and_wash_subscription_weights":7,"P\\Tests\\Unit\\Invoicing\\EconomicV2BookedDepartment75DistributionTest::__pest_evaluable_it_keeps_classified_booked_department_75_amounts_undistributed_when_no_monthly_basis_exists":8,"P\\Tests\\Unit\\Invoicing\\EconomicV2BookedDepartment75DistributionTest::__pest_evaluable_it_keeps_unclassified_booked_department_75_lines_undistributed_with_warnings":8,"P\\Tests\\Unit\\Invoicing\\EconomicV2OpenApiSpecTest::__pest_evaluable_it_documents_v2_historical_distribution_and_pricing_history_paths_in_openapi":1,"P\\Tests\\Unit\\Invoicing\\EconomicV2OpenApiSpecTest::__pest_evaluable_it_defines_new_reusable_v2_schemas_for_normalization_comparison_versioning_and_distribution":1,"P\\Tests\\Unit\\Invoicing\\EconomicV2BookedDepartment75DistributionTest::__pest_evaluable_it_supports_bulk_booked_invoice_line_payloads_with_top_level_department_numbers":7,"P\\Tests\\Unit\\Redis\\RedisAtomicReservationTest::__pest_evaluable_it_claims_a_slot_atomically_with_nx_and_expiration":8,"P\\Tests\\Unit\\Redis\\RedisAtomicReservationTest::__pest_evaluable_it_returns_false_when_the_slot_is_already_claimed_and_clamps_ttl_to_one_second":8,"P\\Tests\\Unit\\Invoicing\\EconomicV2OpenApiSpecTest::__pest_evaluable_it_documents_economic_v2_invoice_paths_in_openapi":1,"P\\Tests\\Unit\\Invoicing\\EconomicV2OpenApiSpecTest::__pest_evaluable_it_aligns_legacy_compare_schema_with_runtime_payload_by_removing_stale_required_order__ids":1,"P\\Tests\\Unit\\Search\\SystemSearchEntityTypeCoverageTest::__pest_evaluable_it_documents_every_supported_search_entity_type_in_openapi_enum":1,"P\\Tests\\Unit\\Search\\SystemSearchOpenApiSpecTest::__pest_evaluable_it_documents_system_wide_search_endpoints_in_openapi":1,"P\\Tests\\Unit\\Search\\SystemSearchOpenApiSpecTest::__pest_evaluable_it_documents_debug__intent_and_parser_metadata_schema_in_openapi":1,"P\\Tests\\Unit\\Search\\SystemSearchOpenApiSpecTest::__pest_evaluable_it_documents_e_conomic_indexed_customer_matching_and_synonym_behavior":1,"P\\Tests\\Integration\\Database\\DbConnectionTest::__pest_evaluable_it_can_connect_to_a_configured_MySQL_instance_in_integration_mode":1,"P\\Tests\\Integration\\Invoicing\\EconomicV2BackfillAndDistributionIntegrationTest::__pest_evaluable_it_runs_best_effort_backfill_repeatedly_without_introducing_duplicate_same_start_rows":1,"P\\Tests\\Integration\\Invoicing\\EconomicV2BackfillAndDistributionIntegrationTest::__pest_evaluable_it_resolves_version_aware_distribution_payload_shapes_over_a_real_date_range":1,"P\\Tests\\Integration\\Invoicing\\EconomicV2VersioningServiceIntegrationTest::__pest_evaluable_it_creates_closes_and_rotates_fixed_pricing_versions_without_overlap":1,"P\\Tests\\Integration\\Invoicing\\EconomicV2VersioningServiceIntegrationTest::__pest_evaluable_it_tracks_vehicle_and_discount_version_lifecycles_with_closure_semantics":1,"P\\Tests\\Integration\\Permissions\\LegacyPermissionRedisCacheScriptTest::__pest_evaluable_it_keeps_legacy_route_permission_redis_cache_script_green":1,"P\\Tests\\Unit\\Goals\\GoalsOpenApiSpecTest::__pest_evaluable_it_documents_advanced_goals_target_duration_fields_in_openapi":1,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTimelineSchemaConformanceTest::__pest_evaluable_it_documents_the_date_key_in_the_openapi_department_weather_timeline_schema":1,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherFallbackBehaviorTest::__pest_evaluable_it_builds_timeline_entries_with_mostly__clear_weather_when_forecast_payload_is_empty":8,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherFallbackBehaviorTest::__pest_evaluable_it_wires_departments_weather_route_through_the_forecast_fallback_path":7,"P\\Tests\\Unit\\Orders\\AttachmentsListManyTest::__pest_evaluable_it_groups_attachments_by_object_id_and_preserves_empty_object_groups":8,"P\\Tests\\Unit\\Orders\\AttachmentsListManyTest::__pest_evaluable_it_keeps_listMany_payload_parity_with_list_for_one_object_id":8,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTargetsOpenApiSpecTest::__pest_evaluable_it_documents_department_weather_target_endpoints_and_reusable_schemas_in_openapi":1,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTargetsOpenApiSpecTest::__pest_evaluable_it_documents_unknown_weather_status_behavior_when_targets_are_missing":1,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_respects_the_1_request_per_second_Shelly_gate_for_back_to_back_requests":8,"P\\Tests\\Unit\\Selfserve\\SelfserveOpenApiSpecTest::__pest_evaluable_it_documents_in_progress_self_serve_wash_start_and_machine_relay_fields":1,"P\\Tests\\Unit\\Selfserve\\SelfserveConfigVersioningTest::__pest_evaluable_it_stores_config_json_with_apostrophes_without_violating_json_constraints":8,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_adds_vehicle_type_product_on_STOP_when_program_selector_is_on__then_turns_off_cleaner_machine_and_selector_relays":7,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_skips_vehicle_type_product_add_when_program_selector_is_off_and_only_disables_configured_relays":7,"P\\Tests\\Unit\\Selfserve\\SelfserveOpenApiSpecTest::__pest_evaluable_it_documents_self_serve_machine_wash_included_minutes_in_config_schemas":1,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_fails_fast_when_workspace_id_is_missing_for_gate_calls":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_fails_fast_when_channel_id_is_missing_for_gate_calls":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_fails_with_terminal_status_details_when_call_never_reaches_accepted_state":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_hangs_up_when_call_reaches_accepted_state":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_hangs_up_immediately_when_status_transitions_to_accepted":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_maps_legacy_timeout_option_to_documented_ringTimeout_payload_field":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_clamps_derived_ringTimeout_to_Bird_documented_max_when_gate_timeout_is_high":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_passes_documented_hangup_cause_when_provided":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_drops_unsupported_hangup_cause_values_from_request_payload":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_fails_fast_when_workspace_id_is_missing_for_gate_flash_calls":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_creates_gate_flash_call_with_documented_ringTimeout_payload":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_polls_flash_call_and_succeeds_once_accepted":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_fails_flash_gate_flow_when_terminal_failure_status_is_returned":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_does_not_fallback_to_regular_gate_call_when_flash_succeeds":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_falls_back_to_regular_gate_call_when_flash_fails":8,"P\\Tests\\Unit\\Selfserve\\SelfserveOpenApiSpecTest::__pest_evaluable_it_documents_property_gate_lane_commands_and_sanitized_gate_failure_responses":1,"P\\Tests\\Unit\\Bird\\BirdModuleClientMappingTest::__pest_evaluable_it_returns_raw_payload_for_malformed_JSON_responses_and_null_for_empty_responses":8,"P\\Tests\\Unit\\Bird\\BirdRouteWiringTest::__pest_evaluable_it_keeps_Bird_number_and_webhook_routes_intact":7,"P\\Tests\\Unit\\Bird\\BirdModuleClientMappingTest::__pest_evaluable_it_handles_malformed_and_empty_response_bodies_without_throwing_transport_errors":8,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherStatusTargetsTest::__pest_evaluable_it_aggregates_multi_department_slot_statuses_using_worst_severity_and_unknown_fallback_rules":7,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_adds_vehicle_type_product_on_STOP_when_program_selector_relay_is_online__then_turns_off_cleaner_and_machine_relays":7,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_bills_primary_product_when_selector_relay_is_online_even_if_relay_output_is_off":7,"P\\Tests\\Unit\\Bird\\BirdOpenApiSpecTest::__pest_evaluable_it_documents_all_Bird_voice_call_parity_endpoints_including_gather_recordings_insights_and_log":1,"P\\Tests\\Unit\\Bird\\BirdOpenApiSpecTest::__pest_evaluable_it_documents_flash_hangup_endpoint_and_marks_end_alias_as_deprecated":1,"P\\Tests\\Unit\\Bird\\BirdOpenApiSpecTest::__pest_evaluable_it_defines_request_and_response_schemas_for_Bird_call_command_recording_insight_log_and_flash_payloads":1,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueRouteRegistrationTest::__pest_evaluable_it_registers_collected_invoice_queue_endpoints_in_orderInvoicesRoute":7,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueAvailabilityGuardTest::__pest_evaluable_it_uses_a_consistent_unavailable_service_contract_for_missing_queue_dependencies":7,"P\\Tests\\Unit\\Invoicing\\EconomicTransferOrderItemSkipTest::__pest_evaluable_it_wires_zero_cost_and_zero_quantity_skip_guard_into_transfer_line_builder":7,"P\\Tests\\Integration\\Invoicing\\EconomicTransferQueueIntegrationTest::__pest_evaluable_it_processes_queued_transfer_jobs_to_completion":1,"P\\Tests\\Integration\\Invoicing\\EconomicTransferQueueIntegrationTest::__pest_evaluable_it_deduplicates_active_jobs_per_transfer_target":1,"P\\Tests\\Integration\\Invoicing\\EconomicTransferQueueIntegrationTest::__pest_evaluable_it_rejects_invalid_payloads_without_inserting_queue_rows":1,"P\\Tests\\Integration\\Invoicing\\EconomicTransferQueueIntegrationTest::__pest_evaluable_it_supports_fail_retry_and_reprocess_lifecycle_transitions":1,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueAvailabilityGuardTest::__pest_evaluable_it_supports_synchronous_fallback_branches_before_queue_enqueue_on_economic_invoice_export_routes":7,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueAvailabilityGuardTest::__pest_evaluable_it_keeps_queue_status_endpoints_guarded_while_collected_invoice_export_routes_support_synchronous_fallback":7,"P\\Tests\\Unit\\Invoicing\\UserCollectedInvoiceUpdateRouteValidationTest::__pest_evaluable_it_supports_independent_po__number_and_closed__at_updates_for_PUT__collected_invoices_in_user_route":7,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueRouteHardeningTest::__pest_evaluable_it_returns_pagination_metadata_and_strict_status_handling_for_collected_invoice_queue_list":7,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueRouteHardeningTest::__pest_evaluable_it_enforces_retry_constraints_for_collected_invoice_queue_jobs_before_retry_execution":7,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueOpenApiSpecTest::__pest_evaluable_it_documents_collected_queue_list_metadata_and_strict_status_filter_enum_in_openapi":7,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueDetailsSummaryBuilderTest::__pest_evaluable_it_builds_a_completed_collected_invoice_queue_summary_from_payload_and_result":8,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueDetailsSummaryBuilderTest::__pest_evaluable_it_prefers_queue_error_messages_for_failed_jobs_and_keeps_null_safe_outcome_fields":8,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueDetailsSummaryBuilderTest::__pest_evaluable_it_uses_deterministic_status_message_fallback_when_no_explicit_message_exists":8,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueDetailsSummaryBuilderTest::__pest_evaluable_it_handles_object_payload_result_values_and_malformed_fields_without_throwing":8,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueWorkerTickRouteTest::__pest_evaluable_it_ticks_collected_invoice_transfer_queue_from_queue_list_and_status_routes":7,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueWorkerTickRouteTest::__pest_evaluable_it_ticks_order_transfer_queue_from_draft_and_invoice_status_routes":7,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayUpdateLifecycleTest::__pest_evaluable_it_builds_the_installer_around_the_PHP_agent_artifacts_and_management_polling_config":8,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayUpdateLifecycleTest::__pest_evaluable_it_exposes_update_payload__credential_rotation__and_operation_endpoints_without_shell_transport_wiring":8,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerHeartbeatStatusTest::__pest_evaluable_it_derives_relay_fallback_and_transport_health_details_without_shell_or_update_runtime_state":7,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayArtifactLocatorTest::__pest_evaluable_it_resolves_edge_agent_artifacts_from_the_source_tree_layout":7,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayArtifactLocatorTest::__pest_evaluable_it_prioritizes_mounted_and_baked_in_artifact_directories_before_repo_fallbacks":7,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayArtifactLocatorTest::__pest_evaluable_it_prioritizes_router_resources_before_mounted_and_baked_in_artifact_directories":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_lists_orders_for_an_admin_scoped_user_and_limits_the_results_to_the_permitted_departments":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_lists_only_the_targeted_customer_orders_for_subuser_sessions":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_returns_the_current_auth_and_permission_failures_when_order_listing_is_not_allowed":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_creates_orders_through_the_real_endpoint":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_rejects_invalid_order_creation_requests":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_updates_orders_through_the_primary_endpoint":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_reassigns_invoice_collections_when_changing_an_order_across_the_draft_customer_boundary":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_supports_legacy_field_value_metadata_updates_through_the_primary_endpoint":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_rejects_invalid_updates_through_the_primary_order_endpoint":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_updates_orders_through_the_legacy_alias_endpoint":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_supports_legacy_field_value_metadata_updates_through_the_alias_endpoint":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_rejects_invalid_updates_through_the_legacy_alias_endpoint":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_rejects_unsupported_legacy_field_value_updates_on_both_update_endpoints":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_deletes_orders_through_the_real_endpoint":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_rejects_invalid_order_delete_requests":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_regenerates_attached_wash_certificates_when_certificate_metadata_changes_through_the_primary_endpoint":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_regenerates_attached_wash_certificates_for_legacy_field_value_updates_through_the_alias_endpoint":7,"P\\Tests\\Api\\ApiCoverageManifestTest::__pest_evaluable_it_keeps_every_selected_API_operation_covered_by_happy_path_and_failure_tests":1,"P\\Tests\\Api\\ApiCoverageManifestTest::__pest_evaluable_it_keeps_the_OpenAPI_manifest_entries_aligned_with_the_API_spec":1,"P\\Tests\\Api\\ApiFixturesCleanupTest::__pest_evaluable_it_removes_generated_customer_traces_during_fixture_cleanup":1,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_logs_in_with_valid_customer_credentials":1,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_rejects_invalid_login_payloads_and_credentials":1,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_returns_the_cached_auth_session_payload_for_a_valid_token":1,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_includes_economic_runtime_config_for_uncached_auth_sessions":1,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_rejects_invalid_auth_session_tokens":1,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_logs_out_and_invalidates_the_token_for_future_session_calls":1,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_logs_out_and_invalidates_cached_subuser_sessions":1,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_rejects_invalid_logout_tokens":1,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_returns_the_raw_202_gather_webhook_contract_over_HTTP":1,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_still_prompts_for_department_selection_when_only_one_department_is_eligible":7,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_accepts_the_legacy_initial_webhook_body_with_top_level_call_identifiers":7,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_returns_native_flow_gather_data_after_a_top_level_department_selection_when_distinct_gate_choices_exist":7,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_opens_the_gate_immediately_after_a_top_level_department_selection_when_entrance_and_exit_share_the_same_gate":7,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_uses_a_multi_digit_gather_contract_when_10_departments_are_eligible":7,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_returns_a_raw_400_transport_error_for_malformed_webhook_payloads":1,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_lists_only_visible_departments_and_can_return_a_single_department_with_the_slack_webhook":7,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_rejects_department_listing_when_the_permission_is_missing":7,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_creates_departments_through_the_real_endpoint":7,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_rejects_invalid_department_create_requests":7,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_updates_departments_through_the_real_endpoint":7,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_rejects_invalid_department_update_requests":7,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_lists_department_categories_for_a_department":7,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_rejects_invalid_department_category_requests":7,"P\\Tests\\Api\\EconomicDraftCustomerApiTest::__pest_evaluable_it_lists_the_draft_customer_config_entry_in_economic_config_responses":1,"P\\Tests\\Api\\EconomicDraftCustomerApiTest::__pest_evaluable_it_round_trips_the_draft_customer_config_value_through_economic_config_updates":1,"P\\Tests\\Api\\EconomicDraftCustomerApiTest::__pest_evaluable_it_rejects_order_draft_exports_for_the_configured_draft_customer":1,"P\\Tests\\Api\\EconomicDraftCustomerApiTest::__pest_evaluable_it_rejects_booked_invoice_exports_for_the_configured_draft_customer":1,"P\\Tests\\Api\\EconomicDraftCustomerApiTest::__pest_evaluable_it_rejects_collected_invoice_exports_for_the_configured_draft_customer":1,"P\\Tests\\Api\\PingApiTest::__pest_evaluable_it_returns_the_ping_contract":1,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_returns_a_setup_required_error_when_department_terminal_readers_are_requested_without_terminal_setup":8,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_sends_a_Stripe_invoice_by_email_and_persists_the_hosted_invoice_association":8,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_returns_a_conflict_when_a_Stripe_hosted_invoice_is_already_active_for_the_order":8,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_allows_sending_a_new_Stripe_hosted_invoice_when_the_existing_association_is_already_terminal":8,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_voids_an_unpaid_Stripe_hosted_invoice_and_clears_the_local_order_association":8,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_refuses_to_cancel_a_paid_Stripe_hosted_invoice":8,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_returns_a_setup_required_error_when_creating_a_payment_intent_for_a_department_without_terminal_setup":8,"P\\Tests\\Api\\VehiclesApiTest::__pest_evaluable_it_returns_the_newest_vehicle_last__order__id_that_still_has_order_items":7,"P\\Tests\\Api\\VehiclesApiTest::__pest_evaluable_it_returns_a_null_vehicle_last__order__id_when_no_order_with_items_exists":7,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayViewCacheTest::__pest_evaluable_it_syncs_gateway_snapshots_into_cached_list_payloads_and_refreshes_fleet_usage":7,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayModuleRouteWiringTest::__pest_evaluable_it_keeps_only_the_module_facade_in_the_global_classes_directory_and_conditionally_loads_module_routes":7,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_builds_install_script_urls_with_the_compose_edge_gateway_artifacts_and_forwarded_https_scheme":8,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayUpdateLifecycleTest::__pest_evaluable_it_builds_the_installer_around_the_compose_stack_artifacts_and_management_polling_config":7,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayUpdateLifecycleTest::__pest_evaluable_it_exposes_update_payload__credential_rotation__cancel_endpoints__and_operation_endpoints_without_shell_transport_wiring":7,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayRouteWiringTest::__pest_evaluable_it_registers_the_v2_operator_facing_edge_gateway_routes":7,"P\\Tests\\Unit\\Selfserve\\EdgeGatewaySchemaBootstrapTest::__pest_evaluable_it_defines_the_v2_edge_gateway_schema_bootstrap_tables":7,"P\\Tests\\Unit\\Selfserve\\EdgeGatewaySchemaBootstrapTest::__pest_evaluable_it_stores_operation_metadata_and_event_timelines_for_management_workflows":7,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_prefers_EDGE__PUBLIC__API__URL_when_explicitly_configured":8,"P\\Tests\\Api\\PlateScannersApiTest::__pest_evaluable_it_returns_the_updated_lane_id_after_editing_a_scanner_whose_null_lane_was_already_cached":7,"P\\Tests\\Api\\EdgeGatewayAgentApiTest::__pest_evaluable_it_serves_installer_artifacts_and_recovers_gateway_runtime_status_after_fresh_heartbeats":1,"P\\Tests\\Api\\EdgeGatewayAgentApiTest::__pest_evaluable_it_polls_operations_and_commands__submits_results__and_records_broker_presence_for_task_pages":7,"P\\Tests\\Api\\EdgeGatewayBrokerApiTest::__pest_evaluable_it_builds_broker_backlog_and_completes_gateway_operations_through_broker_endpoints":8,"P\\Tests\\Api\\EdgeGatewayOperatorApiTest::__pest_evaluable_it_creates_install_tokens__tracks_installer_status__and_exposes_claimed_gateway_detail_to_authorized_operators":1,"P\\Tests\\Api\\EdgeGatewayOperatorApiTest::__pest_evaluable_it_manages_edge_gateway_metadata__bindings__operations__sessions__rotation__cutover__and_deletion":8,"P\\Tests\\Integration\\EdgeGateway\\EdgeGatewayBackendIntegrationTest::__pest_evaluable_it_assembles_tasks__logs__statistics__operations__commands__and_shell_lifecycle_state_from_persisted_records":1,"P\\Tests\\Api\\EdgeGatewayBrokerApiTest::__pest_evaluable_it_rejects_invalid_edge_broker_shared_secrets":1,"P\\Tests\\Api\\EdgeGatewayOperatorApiTest::__pest_evaluable_it_rejects_operator_edge_routes_when_module_permission_or_department_access_is_missing":1,"P\\Tests\\Api\\EdgeGatewayAgentApiTest::__pest_evaluable_it_rejects_missing_and_invalid_edge_agent_tokens":1,"P\\Tests\\Integration\\EdgeGateway\\EdgeGatewayBackendIntegrationTest::__pest_evaluable_it_persists_gateway_cutover_relay_bindings_used_by_self_serve_Shelly_dispatch":1,"P\\Tests\\Api\\EdgeGatewayBrokerApiTest::__pest_evaluable_it_validates_broker_sessions_and_ingests_presence__telemetry__logs__and_shell_lifecycle_data":1,"P\\Tests\\Api\\EdgeGatewayBrokerApiTest::__pest_evaluable_it_rejects_shell_session_creation_while_broker_presence_is_unavailable":1,"P\\Tests\\Api\\EdgeGatewayOperatorApiTest::__pest_evaluable_it_ignores_and_soft_deletes_edge_gateways_whose_department_no_longer_exists":8,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_appends_forwarded_ports_when_the_forwarded_host_omits_them":8,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_builds_websocket_broker_urls_on_the_traefik_broker_path":8,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_builds_localhost_websocket_broker_urls_on_the_local_traefik_api_prefix":8,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_keeps_root_host_api_urls_unprefixed_when_the_request_is_not_under_the_local_api_alias":8,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_resolves_simulator_gateway_service_bindings_from_lane_relay_slots":7,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_counts_overtime_minutes_when_a_saved_shift_end_extends_past_the_approved_original_end":7,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_counts_unapproved_overtime_from_a_bounded_shift_updateTime_fallback":7,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_caps_current_slot_hours_to_elapsed_minutes_and_zeroes_future_slots":7,"P\\Tests\\Api\\EconomicDraftCustomerApiTest::__pest_evaluable_it_round_trips_the_default_distribution_department_config_value_through_economic_config_updates":1,"P\\Tests\\Unit\\Replication\\ReplicationSecretBoxTest::__pest_evaluable_it_encrypts_replication_secrets_without_storing_plaintext":8,"P\\Tests\\Unit\\Replication\\ReplicationSecretBoxTest::__pest_evaluable_it_builds_active_database_and_redis_config_from_encrypted_bootstrap_snapshots":8,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_does_not_require_replica_SQL_threads_before_database_provisioning_configures_them":7,"P\\Tests\\Unit\\Invoicing\\EconomicDraftCustomerOpenApiSpecTest::__pest_evaluable_it_documents_transaction_draft_customer_config_and_auth_runtime_fields_in_all_tracked_openapi_copies":1,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_computes_MinIO_free_space_and_catch_up_math_safely":7,"P\\Tests\\Integration\\DailyReports\\DepartmentDailyReportComplaintsIntegrationTest::__pest_evaluable_it_counts_complaint_rows_by_department_and_created__at_reporting_range":1,"P\\Tests\\Integration\\DailyReports\\DepartmentDailyReportComplaintsIntegrationTest::__pest_evaluable_it_updates_and_deletes_complaint_rows":1,"P\\Tests\\Integration\\DailyReports\\DepartmentDailyReportComplaintsIntegrationTest::__pest_evaluable_it_parses_created__by__name_from_the_users_table":1,"P\\Tests\\Integration\\DailyReports\\DepartmentOutsideHoursStatisticsServiceIntegrationTest::__pest_evaluable_it_integrates_orders__xlvask__and_self_serve_into_one_outside_hours_summary_with_missing_hours_diagnostics":1,"P\\Tests\\Integration\\EdgeGateway\\EdgeGatewayBackendIntegrationTest::__pest_evaluable_it_persists_install_session_updates_and_derives_gateway_runtime_status_from_heartbeats":1,"P\\Tests\\Integration\\Invoicing\\EconomicTransferQueueIntegrationTest::__pest_evaluable_it_processes_only_collected_invoice_jobs_and_respects_the_manual_batch_limit":1,"P\\Tests\\Integration\\SystemStatus\\SuperuserSystemStatusInfrastructureProbeTest::__pest_evaluable_it_can_probe_the_configured_database_in_integration_mode":1,"P\\Tests\\Integration\\SystemStatus\\SuperuserSystemStatusInfrastructureProbeTest::__pest_evaluable_it_can_probe_redis_in_integration_mode_when_configured":1,"P\\Tests\\Integration\\SystemStatus\\SuperuserSystemStatusInfrastructureProbeTest::__pest_evaluable_it_can_probe_minio_in_integration_mode_when_configured":1,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_creates_Coolify_service_payloads_from_raw_compose_without_a_service_type":7,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_uses_the_selected_Coolify_project_and_resolves_server_UUID_from_the_instance_default":8,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_creates_Coolify_GitHub_App_application_payloads_so_pulls_use_the_app_token":7,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_uses_the_self_contained_Coolify_API_Dockerfile_for_API_applications":7,"P\\Tests\\Unit\\Tooling\\ComposerEntrypointTest::__pest_evaluable_it_checks_PSR_HTTP_message_interfaces_before_trusting_a_Composer_vendor_tree":7,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_defines_release_manager_schema__routes__permissions__and_system_status_integration_hooks":7,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_requires_non_default_release_channel_runtime_URLs_and_preserves_load_balancer_paths":7,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_wires_MinIO_replication_through_routes_and_bootstrap_snapshots":7,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_defines_Coolify_schema__route_permissions__and_replication_integration_hooks":7,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_chooses_a_requested_runtime_channel_only_when_it_is_available_to_the_principal":8},"times":{"P\\Tests\\Unit\\Auth\\CreateTokenTest::__pest_evaluable_it_creates_a_64_char_auth_token_for_an_existing_user":0.11,"P\\Tests\\Unit\\Auth\\CreateTokenTest::__pest_evaluable_it_throws_a_clear_exception_when_customer_user_is_missing":0.017,"P\\Tests\\Unit\\Auth\\LegacyAuthScriptParityTest::__pest_evaluable_it_keeps_passkey_challenge_legacy_script_green_during_migration":0.035,"P\\Tests\\Unit\\Auth\\LegacyAuthScriptParityTest::__pest_evaluable_it_keeps_register_CVR_legacy_script_green_during_migration":0.036,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteIvrTest::__pest_evaluable_it_builds_deterministic_department_digit_map_and_caps_to_9_options":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteIvrTest::__pest_evaluable_it_resolves_department_ids_by_selected_digit":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteIvrTest::__pest_evaluable_it_resolves_gate_type_digit_to_entrance_or_exit":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteIvrTest::__pest_evaluable_it_stores__loads_and_clears_ivr_state_with_ttl":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteIvrTest::__pest_evaluable_it_validates_state_caller_fingerprint_matching":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteIvrTest::__pest_evaluable_it_builds_department_and_gate_prompts":0,"P\\Tests\\Unit\\Permissions\\PermissionNodeDefinitionTest::__pest_evaluable_it_creates_permission_nodes_linked_to_subuser_permission_keys":0,"P\\Tests\\Unit\\Permissions\\PermissionNodeDefinitionTest::__pest_evaluable_it_rejects_empty_permission_definitions":0,"P\\Tests\\Unit\\Selfserve\\NormalizationTest::__pest_evaluable_it_normalizes_button_arrays__json_and_csv_inputs":0,"P\\Tests\\Unit\\Selfserve\\NormalizationTest::__pest_evaluable_it_rejects_invalid_button_inputs":0,"P\\Tests\\Unit\\Selfserve\\NormalizationTest::__pest_evaluable_it_normalizes_vehicle_type_values_and_null_semantics":0,"P\\Tests\\Unit\\Selfserve\\NormalizationTest::__pest_evaluable_it_rejects_invalid_vehicle_type_values":0,"P\\Tests\\Unit\\Selfserve\\NormalizationTest::__pest_evaluable_it_rejects_non_numeric_vehicle_type_strings":0,"P\\Tests\\Unit\\Selfserve\\NormalizationTest::__pest_evaluable_it_keeps_lane_service_enum_contract_for_MACHINE":0,"P\\Tests\\Unit\\Subusers\\SubuserGrantInitializationTest::__pest_evaluable_it_initializes_booking_node_grants_without_DB_dependency":0,"P\\Tests\\Unit\\Subusers\\SubuserGrantInitializationTest::__pest_evaluable_it_initializes_selfserve_node_grants_without_DB_dependency":0,"P\\Tests\\Unit\\Subusers\\SubusersRoutePermissionLinkTest::__pest_evaluable_it_keeps_subusers_route_list_permission_linked_to_SUBUSERS__LIST_node":0.006,"P\\Tests\\Unit\\Search\\SystemSearchEntityTypeCoverageTest::__pest_evaluable_it_keeps_route_and_service_entity_type_registries_in_sync_with_expanded_coverage":0,"P\\Tests\\Unit\\Search\\SystemSearchEntityTypeCoverageTest::__pest_evaluable_it_documents_every_supported_search_entity_type_in_openapi_enum":0.009,"P\\Tests\\Unit\\Search\\SystemSearchEconomicCustomerIndexWiringTest::__pest_evaluable_it_wires_local_e_conomic_customer_index_into_customer_related_search_entities":0.005,"P\\Tests\\Unit\\Search\\SystemSearchEconomicCustomerIndexWiringTest::__pest_evaluable_it_registers_cron_tasks_that_keep_the_e_conomic_search_index_refreshed":0.005,"P\\Tests\\Unit\\Search\\SystemSearchInvalidationHooksTest::__pest_evaluable_it_marks_system_search_cache_dirty_from_generic_db_object_mutation_flows":0.004,"P\\Tests\\Unit\\Search\\SystemSearchInvalidationHooksTest::__pest_evaluable_it_marks_system_search_cache_dirty_from_object_property_mutations":0.002,"P\\Tests\\Unit\\Search\\SystemSearchInvalidationHooksTest::__pest_evaluable_it_marks_system_search_cache_dirty_when_module_config_values_change":0.004,"P\\Tests\\Unit\\Search\\SystemSearchInvalidationHooksTest::__pest_evaluable_it_registers_cron_maintenance_task_for_system_search_cache":0.004,"P\\Tests\\Unit\\Search\\SystemSearchOpenAiIntentParserTest::__pest_evaluable_it_redacts_obvious_sensitive_fragments_before_sending_query_to_intent_parser":0.001,"P\\Tests\\Unit\\Search\\SystemSearchOpenAiIntentParserTest::__pest_evaluable_it_builds_payload_with_redacted_query_and_parses_strict_JSON_output":0,"P\\Tests\\Unit\\Search\\SystemSearchOpenAiIntentParserTest::__pest_evaluable_it_falls_back_safely_when_OpenAI_is_disabled":0,"P\\Tests\\Unit\\Search\\SystemSearchOpenAiIntentParserTest::__pest_evaluable_it_handles_malformed_OpenAI_response_payloads_without_throwing":0,"P\\Tests\\Unit\\Search\\SystemSearchOpenAiIntentParserTest::__pest_evaluable_it_uses_parser_cache_for_identical_query_and_allowed_type_combinations":0,"P\\Tests\\Unit\\Search\\SystemSearchOpenAiIntentParserTest::__pest_evaluable_it_caps_alias_and_hint_payloads_from_OpenAI_and_filters_hints_to_allowed_types":0,"P\\Tests\\Unit\\Search\\SystemSearchOpenApiSpecTest::__pest_evaluable_it_documents_system_wide_search_endpoints_in_openapi":0.009,"P\\Tests\\Unit\\Search\\SystemSearchOpenApiSpecTest::__pest_evaluable_it_documents_debug__intent_and_parser_metadata_schema_in_openapi":0.008,"P\\Tests\\Unit\\Search\\SystemSearchOpenApiSpecTest::__pest_evaluable_it_documents_e_conomic_indexed_customer_matching_and_synonym_behavior":0.007,"P\\Tests\\Unit\\Search\\SystemSearchRouteBehaviorTest::__pest_evaluable_it_normalizes_type_lists_from_csv_json_and_arrays":0,"P\\Tests\\Unit\\Search\\SystemSearchRouteBehaviorTest::__pest_evaluable_it_parses_booleans_and_clamps_integers_using_route_defaults":0,"P\\Tests\\Unit\\Search\\SystemSearchRouteBehaviorTest::__pest_evaluable_it_exposes_expected_searchable_entity_types":0,"P\\Tests\\Unit\\Search\\SystemSearchRouteWiringTest::__pest_evaluable_it_registers_system_wide_search_GET_and_POST_endpoints_with_intent_debug_support":0.003,"P\\Tests\\Unit\\Search\\SystemSearchRouteWiringTest::__pest_evaluable_it_registers_superuser_cache_clear_and_rebuild_endpoints_for_system_search":0.002,"P\\Tests\\Unit\\Search\\SystemSearchRouteWiringTest::__pest_evaluable_it_passes_permission_and_own_scope_context_into_system_search_service":0.001,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_does_not_invoke_intent_parser_when_lexical_confidence_is_already_high":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_invokes_parser_on_low_confidence_lexical_results_and_applies_hints_only_boosts":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_never_lets_parser_entity_hints_override_explicit_include_filters":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_returns_fallback_parser_metadata_when_parser_fails_gracefully":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_scopes_query_cache_by_permission_context_to_avoid_cross_user_cache_leakage":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_caps_AI_driven_expanded_terms_to_prevent_query_amplification":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_expands_danish_discount_wording_into_lexical_discount_synonyms":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_invokes_parser_for_intent_driven_natural_language_queries_even_when_lexical_score_is_high":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_uses_association_hints_to_pull_related_customer_records_from_non_customer_matches":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_prefers_newer_records_when_relevance_scores_are_comparable":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_keeps_explicit_identifier_matches_ahead_of_newer_but_weaker_records":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_promotes_invoices_orders_order_bookings_and_customers_in_ranking":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_never_prioritizes_cancelled_bookings_over_active_bookings":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_heavily_demotes_configured_low_priority_entity_types_in_ranking":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_tokenizes_unicode_names_without_stripping_non_ascii_letters":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_does_not_treat_explicit_identifier_queries_as_intent_driven":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_requires_broader_term_coverage_for_multi_word_scoring":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_enriches_object_attachment_results_with_associated_customer_context":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_includes_the_economic_customer_index_in_cache_dependencies_for_customer_scoped_results":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_falls_back_to_invoice_date_ranges_when_invoice_names_are_missing":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_derives_xlvask_customer_numbers_only_from_digits_only_extern_ids":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_replaces_unnamed_user_titles_with_the_customer_context_name":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_uses_the_goal_criteria_label_for_department_goal_titles":0,"P\\Tests\\Integration\\Search\\SystemSearchCacheIntegrationTest::__pest_evaluable_it_reuses_parser_cache_entries_for_repeated_natural_language_intent_requests":0.129,"P\\Tests\\Integration\\Search\\SystemSearchCacheIntegrationTest::__pest_evaluable_it_clears_parser_cache_namespace_via_clearAll_to_force_a_fresh_parse":0,"P\\Tests\\Integration\\Search\\SystemSearchCacheIntegrationTest::__pest_evaluable_it_bumps_per_table_cache_versions_when_a_dirty_table_marker_is_registered":0.05,"P\\Tests\\Unit\\Invoicing\\EconomicV2DistributionServiceFallbackTest::__pest_evaluable_it_falls_back_to_system_orders_for_fixed_pricing_when_regular_orders_yield_no_customers":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2DistributionServiceFallbackTest::__pest_evaluable_it_falls_back_to_system_orders_for_wash_subscriptions_when_regular_orders_yield_no_customers":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2CliBackfillCommandTest::__pest_evaluable_it_registers_economic_v2_backfill_command_in_cli_dispatcher":0.003,"P\\Tests\\Unit\\Invoicing\\EconomicV2CliBackfillCommandTest::__pest_evaluable_it_provides_a_backfill_cron_script_entrypoint":0.006,"P\\Tests\\Unit\\Invoicing\\EconomicV2CompareEngineTest::__pest_evaluable_it_returns_exact__match_when_totals_lines_and_departments_are_identical":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2CompareEngineTest::__pest_evaluable_it_returns_total__mismatch_when_only_totals_differ":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2CompareEngineTest::__pest_evaluable_it_detects_line_level_mismatches_for_quantity_and_price":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2CompareEngineTest::__pest_evaluable_it_detects_departmental_distribution_mismatches":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2CompareEngineTest::__pest_evaluable_it_returns_missing__target_when_draft_or_booked_target_is_unavailable":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2LineNormalizerTest::__pest_evaluable_it_normalizes_draft_invoice_lines_including_departmental_distributions":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2LineNormalizerTest::__pest_evaluable_it_marks_text_only_zero_value_lines_as_non_billable_and_keeps_deterministic_key":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2LineNormalizerTest::__pest_evaluable_it_normalizes_booked_invoices_and_computes_net_total_delta_from_lines":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2LineNormalizerTest::__pest_evaluable_it_contains_internal_normalization_path_with_departmental_metadata_support":0.007,"P\\Tests\\Unit\\Invoicing\\EconomicV2OpenApiSpecTest::__pest_evaluable_it_documents_economic_v2_invoice_paths_in_openapi":0.013,"P\\Tests\\Unit\\Invoicing\\EconomicV2OpenApiSpecTest::__pest_evaluable_it_documents_v2_historical_distribution_and_pricing_history_paths_in_openapi":0.012,"P\\Tests\\Unit\\Invoicing\\EconomicV2OpenApiSpecTest::__pest_evaluable_it_aligns_legacy_compare_schema_with_runtime_payload_by_removing_stale_required_order__ids":0.014,"P\\Tests\\Unit\\Invoicing\\EconomicV2OpenApiSpecTest::__pest_evaluable_it_defines_new_reusable_v2_schemas_for_normalization_comparison_versioning_and_distribution":0.014,"P\\Tests\\Unit\\Invoicing\\EconomicV2RevenueAndBarredSupportTest::__pest_evaluable_it_supports_barred_filtering_when_listing_e_conomic_customers":0.01,"P\\Tests\\Unit\\Invoicing\\EconomicV2RevenueAndBarredSupportTest::__pest_evaluable_it_implements_a_dedicated_v2_e_conomic_revenue_statistics_service_and_route":0.006,"P\\Tests\\Unit\\Invoicing\\EconomicV2RouteAndVersioningHooksTest::__pest_evaluable_it_registers_all_collected_invoice_economic_v2_routes_with_explicit_permissions":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicV2RouteAndVersioningHooksTest::__pest_evaluable_it_registers_version_aware_distribution_and_pricing_history_v2_routes":0.006,"P\\Tests\\Unit\\Invoicing\\EconomicV2RouteAndVersioningHooksTest::__pest_evaluable_it_caches_v2_distribution_responses_with_a_configurable_redis_ttl":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicV2RouteAndVersioningHooksTest::__pest_evaluable_it_writes_fixed_pricing_versions_from_create_and_delete_flows":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicV2RouteAndVersioningHooksTest::__pest_evaluable_it_writes_vehicle_subscription_versions_for_create_update_delete_flows":0.002,"P\\Tests\\Unit\\Invoicing\\EconomicV2RouteAndVersioningHooksTest::__pest_evaluable_it_writes_discount_override_versions_from_superuser_discounts_route":0.005,"P\\Tests\\Unit\\Invoicing\\EconomicV2RouteAndVersioningHooksTest::__pest_evaluable_it_keeps_legacy_compare_endpoint_path_for_backward_compatibility":0.003,"P\\Tests\\Unit\\Invoicing\\EconomicV2VersioningServiceStructureTest::__pest_evaluable_it_implements_effective_range_lifecycle_methods_for_all_versioned_entities":0.005,"P\\Tests\\Unit\\Invoicing\\EconomicV2VersioningServiceStructureTest::__pest_evaluable_it_closes_previous_active_interval_before_inserting_a_new_version":0.003,"P\\Tests\\Unit\\Invoicing\\EconomicV2VersioningServiceStructureTest::__pest_evaluable_it_includes_best_effort_backfill_with_provenance_and_confidence_metadata":0.003,"P\\Tests\\Unit\\Invoicing\\EconomicV2VersioningServiceStructureTest::__pest_evaluable_it_anchors_historical_resolution_on_order_created__at_timestamps_in_distribution_service":0.006,"P\\Tests\\Unit\\Invoicing\\InvoicingOrdersCalculationsHardeningTest::__pest_evaluable_it_guards_against_empty_order_ids_in_net_amount_calculation":0.004,"P\\Tests\\Unit\\Invoicing\\InvoicingOrdersCalculationsHardeningTest::__pest_evaluable_it_guards_against_empty_customer_arrays_in_date_range_transaction_fetches":0.003,"P\\Tests\\Unit\\Invoicing\\InvoicingOrdersCalculationsHardeningTest::__pest_evaluable_it_uses_centralized_duplicate_filtering_for_possible_duplicate_detection":0.004,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodRouteCacheHelpersTest::__pest_evaluable_it_uses_sane_ttl_defaults_and_clamps_negative_ttl_to_zero":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodRouteCacheHelpersTest::__pest_evaluable_it_builds_deterministic_cache_keys_per_scope_and_date_range":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodRouteCacheHelpersTest::__pest_evaluable_it_falls_back_to_resolver_directly_when_cache_ttl_is_disabled":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodRouteGuardsTest::__pest_evaluable_it_requires_superuser_permission_for_invoicing_period_distribution_all_endpoint":0.004,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodRouteGuardsTest::__pest_evaluable_it_uses_shared_date_range_normalization_across_invoicing_period_endpoints":0.027,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodUtilsTest::__pest_evaluable_it_normalizes_a_valid_invoicing_date_range_to_full_day_timestamps":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodUtilsTest::__pest_evaluable_it_rejects_invalid_date_formats":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodUtilsTest::__pest_evaluable_it_rejects_descending_date_ranges":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodUtilsTest::__pest_evaluable_it_finds_duplicate_orders_regardless_of_original_input_order":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2DistributionServiceFallbackTest::__pest_evaluable_it_runs_best_effort_backfill_when_fixed_pricing_version_history_is_empty":0.001,"P\\Tests\\Unit\\Selfserve\\SelfserveConditionEvaluatorTest::__pest_evaluable_it_evaluates_self_serve_conditions_with_combined_AND_and_OR_semantics":0,"P\\Tests\\Unit\\Selfserve\\SelfserveConditionEvaluatorTest::__pest_evaluable_it_prefers_condition_results_over_question_answers_when_evaluating_task_gates":0,"P\\Tests\\Unit\\Selfserve\\SelfserveOpenApiSpecTest::__pest_evaluable_it_documents_self_serve_machine_type__eligibility__summary__and_webhook_endpoints":0.011,"P\\Tests\\Unit\\Selfserve\\SelfserveOpenApiSpecTest::__pest_evaluable_it_defines_reusable_self_serve_wash_and_machine_type_schemas":0.01,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_wires_self_serve_machine_types__eligibility__summaries__and_machine_start_webhook_routes":0.017,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_keeps_machine_type_support_wired_into_lanes__tasks__and_conditions_routes":0.019,"P\\Tests\\Unit\\N8n\\N8nRouteHelpersTest::__pest_evaluable_it_normalizes_webhook_methods_and_falls_back_to_POST_for_unsupported_verbs":0,"P\\Tests\\Unit\\N8n\\N8nRouteHelpersTest::__pest_evaluable_it_filters_request_parameters_down_to_the_allowed_n8n_query_keys":0,"P\\Tests\\Unit\\N8n\\N8nRouteWiringTest::__pest_evaluable_it_registers_workflow_lifecycle_endpoints_for_the_n8n_module":0.005,"P\\Tests\\Unit\\N8n\\N8nRouteWiringTest::__pest_evaluable_it_registers_execution_and_webhook_trigger_endpoints_for_the_n8n_module":0.003,"P\\Tests\\Unit\\Invoicing\\EconomicV2BookedDepartment75DistributionTest::__pest_evaluable_it_redistributes_booked_department_75_net_amounts_using_fixed_pricing_and_wash_subscription_weights":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2BookedDepartment75DistributionTest::__pest_evaluable_it_keeps_classified_booked_department_75_amounts_undistributed_when_no_monthly_basis_exists":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2BookedDepartment75DistributionTest::__pest_evaluable_it_keeps_unclassified_booked_department_75_lines_undistributed_with_warnings":0,"P\\Tests\\Unit\\Invoicing\\EconomicEndpointUrlEncodingTest::__pest_evaluable_it_encodes_raw_filter_query_values_that_include_timestamps":0,"P\\Tests\\Unit\\Invoicing\\EconomicEndpointUrlEncodingTest::__pest_evaluable_it_avoids_double_encoding_query_values_that_are_already_escaped":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2BookedDepartment75DistributionTest::__pest_evaluable_it_supports_bulk_booked_invoice_line_payloads_with_top_level_department_numbers":0,"P\\Tests\\Unit\\Redis\\RedisAtomicReservationTest::__pest_evaluable_it_claims_a_slot_atomically_with_nx_and_expiration":0,"P\\Tests\\Unit\\Redis\\RedisAtomicReservationTest::__pest_evaluable_it_returns_false_when_the_slot_is_already_claimed_and_clamps_ttl_to_one_second":0,"P\\Tests\\Unit\\Bookings\\OrderBookingRouteIdempotencyGuardTest::__pest_evaluable_it_guards_order_booking_creation_with_redis_backed_idempotency":0.004,"P\\Tests\\Unit\\DynamicImages\\DynamicImagePreRenderCronWiringTest::__pest_evaluable_it_registers_dynamic_image_pre_render_cron_task_and_related_helpers":0.003,"P\\Tests\\Integration\\Database\\DbConnectionTest::__pest_evaluable_it_can_connect_to_a_configured_MySQL_instance_in_integration_mode":0.016,"P\\Tests\\Integration\\Invoicing\\EconomicV2BackfillAndDistributionIntegrationTest::__pest_evaluable_it_runs_best_effort_backfill_repeatedly_without_introducing_duplicate_same_start_rows":0.013,"P\\Tests\\Integration\\Invoicing\\EconomicV2BackfillAndDistributionIntegrationTest::__pest_evaluable_it_resolves_version_aware_distribution_payload_shapes_over_a_real_date_range":0.016,"P\\Tests\\Integration\\Invoicing\\EconomicV2VersioningServiceIntegrationTest::__pest_evaluable_it_creates_closes_and_rotates_fixed_pricing_versions_without_overlap":0.015,"P\\Tests\\Integration\\Invoicing\\EconomicV2VersioningServiceIntegrationTest::__pest_evaluable_it_tracks_vehicle_and_discount_version_lifecycles_with_closure_semantics":0.014,"P\\Tests\\Integration\\Permissions\\LegacyPermissionRedisCacheScriptTest::__pest_evaluable_it_keeps_legacy_route_permission_redis_cache_script_green":0.01,"P\\Tests\\Unit\\Permissions\\AllowOwnOrDepartmentAccessForbiddenTest::__pest_evaluable_it_returns_both_own_and_elevated_permissions_when_both_are_missing":0,"P\\Tests\\Unit\\Permissions\\AllowOwnOrDepartmentAccessForbiddenTest::__pest_evaluable_it_returns_only_elevated_permission_when_own_permission_exists_but_own_context_fails":0,"P\\Tests\\Unit\\Permissions\\AllowOwnOrDepartmentAccessForbiddenTest::__pest_evaluable_it_allows_elevated_permission_path_without_forbidden_and_validates_department_access":0,"P\\Tests\\Unit\\Permissions\\ForbiddenResponseWiringTest::__pest_evaluable_it_routes_and_trait_use_forbidden_responses_for_permission_and_ownership_denials":0.01,"P\\Tests\\Unit\\Permissions\\GroupPermissionSessionInvalidationWiringTest::__pest_evaluable_it_invalidates_related_user_permission_and_auth_session_caches_when_group_permissions_change":0.004,"P\\Tests\\Unit\\Goals\\GoalsCriteriaTargetDurationTest::__pest_evaluable_it_parses_advanced_target_duration_from_snake__case_fields":0.076,"P\\Tests\\Unit\\Goals\\GoalsCriteriaTargetDurationTest::__pest_evaluable_it_parses_advanced_target_duration_from_camelCase_aliases":0,"P\\Tests\\Unit\\Goals\\GoalsCriteriaTargetDurationTest::__pest_evaluable_it_normalizes_ENTIRE__DURATION_to_ignore_target__duration__every":0,"P\\Tests\\Unit\\Goals\\GoalsCriteriaTargetDurationTest::__pest_evaluable_it_defaults_recurring_target__duration__every_to_1_when_omitted":0,"P\\Tests\\Unit\\Goals\\GoalsCriteriaTargetDurationTest::__pest_evaluable_it_keeps_strict_legacy_mode_when_target__duration_is_invalid":0,"P\\Tests\\Unit\\Goals\\GoalsCriteriaTargetMathTest::__pest_evaluable_it_computes_weekly_target_using_touched_ISO_weeks_for_March_2026":0,"P\\Tests\\Unit\\Goals\\GoalsCriteriaTargetMathTest::__pest_evaluable_it_applies_target__duration__every_for_weekly_cadence":0,"P\\Tests\\Unit\\Goals\\GoalsCriteriaTargetMathTest::__pest_evaluable_it_prorates_ENTIRE__DURATION_target_by_overlap_days":0,"P\\Tests\\Unit\\Goals\\GoalsCriteriaTargetMathTest::__pest_evaluable_it_splits_advanced_target_by_override_weights_per_department":0,"P\\Tests\\Unit\\Goals\\GoalsCriteriaTargetMathTest::__pest_evaluable_it_preserves_legacy_target_behavior_when_target__duration_is_missing":0,"P\\Tests\\Unit\\Goals\\GoalsLegacyRendererScriptsTest::__pest_evaluable_it_keeps_legacy_monthly_renderer_script_green":0.156,"P\\Tests\\Unit\\Goals\\GoalsLegacyRendererScriptsTest::__pest_evaluable_it_keeps_legacy_department_daily_renderer_script_green":0.17,"P\\Tests\\Unit\\Goals\\GoalsOpenApiSpecTest::__pest_evaluable_it_documents_advanced_goals_target_duration_fields_in_openapi":0.013,"P\\Tests\\Unit\\Workfeed\\WorkfeedClientConformanceTest::__pest_evaluable_it_uses_company_scoped_workfeed_endpoints_and_raw_Authorization_header":0.004,"P\\Tests\\Unit\\Workfeed\\WorkfeedClientConformanceTest::__pest_evaluable_it_normalizes_documented_shift_query_parameters":0.003,"P\\Tests\\Unit\\Workfeed\\WorkfeedConfigRouteWiringTest::__pest_evaluable_it_registers_module_config_endpoints_for_workfeed":0.004,"P\\Tests\\Unit\\Workfeed\\WorkfeedRouteHelpersTest::__pest_evaluable_it_filters_request_parameters_down_to_the_allowed_workfeed_query_keys":0,"P\\Tests\\Unit\\Workfeed\\WorkfeedRouteWiringTest::__pest_evaluable_it_registers_employee_and_department_endpoints_for_the_workfeed_module":0.003,"P\\Tests\\Unit\\Workfeed\\WorkfeedRouteWiringTest::__pest_evaluable_it_registers_shift_endpoints_for_the_workfeed_module":0.003,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_calculates_workfeed_employee_hours_for_the_hour_slot_based_on_overlap":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_extracts_department_id_from_supported_workfeed_shift_shapes":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_normalizes_wrapped_workfeed_collections_from_common_response_keys":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTimelineSchemaConformanceTest::__pest_evaluable_it_includes_a_date_key_in_department_weather_timeline_entries":0.005,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTimelineSchemaConformanceTest::__pest_evaluable_it_documents_the_date_key_in_the_openapi_department_weather_timeline_schema":0.008,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTimelineRangeTest::__pest_evaluable_it_builds_a_timeline_range_from_start_of_yesterday_to_end_of_today":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTimelineRangeTest::__pest_evaluable_it_builds_a_timeline_range_relative_to_an_explicit_selected_date_override":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_calculates_workfeed_employee_hours_across_multiple_departments_for_one_hour_slot":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_normalizes_department_id_input_from_scalar_csv_and_nested_array_values":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTimelineRangeTest::__pest_evaluable_it_builds_a_timeline_range_relative_to_explicit_date__from_and_date__to_override":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTimelineRangeTest::__pest_evaluable_it_resolves_forecast_day_count_for_a_given_timeline_range_with_sane_limits":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherFallbackBehaviorTest::__pest_evaluable_it_resolves_weather_coordinates_from_valid_coordinates_only":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherFallbackBehaviorTest::__pest_evaluable_it_returns_null_weather_coordinates_when_all_department_locations_are_invalid":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherFallbackBehaviorTest::__pest_evaluable_it_classifies_weatherapi_no_matching_location_errors_as_location_lookup_failures":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherFallbackBehaviorTest::__pest_evaluable_it_does_not_classify_non_location_weatherapi_errors_as_location_lookup_failures":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherFallbackBehaviorTest::__pest_evaluable_it_returns_an_empty_forecast_fallback_when_coordinates_are_unavailable":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherFallbackBehaviorTest::__pest_evaluable_it_builds_timeline_entries_with_mostly__clear_weather_when_forecast_payload_is_empty":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherFallbackBehaviorTest::__pest_evaluable_it_wires_departments_weather_route_through_the_forecast_fallback_path":0.006,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherCacheHelpersTest::__pest_evaluable_it_uses_sane_ttl_defaults_and_clamps_negative_ttl_to_zero":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherCacheHelpersTest::__pest_evaluable_it_builds_deterministic_cache_keys_for_department_sets_and_timeline_ranges":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherCacheHelpersTest::__pest_evaluable_it_builds_order_insensitive_cache_keys_for_equivalent_department_id_sets":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherCacheHelpersTest::__pest_evaluable_it_falls_back_to_resolver_directly_when_cache_ttl_is_disabled":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTimelineRangeTest::__pest_evaluable_it_marks_non_started_slots_as_unknown_regardless_of_wash_hour_ratio":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherPreloadCronWiringTest::__pest_evaluable_it_registers_and_implements_cron_preloading_for_department_weather_cache":0.01,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherCacheHelpersTest::__pest_evaluable_it_uses_sane_stale_ttl_defaults_and_clamps_stale_ttl_below_fresh_ttl":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherCacheHelpersTest::__pest_evaluable_it_uses_sane_hot_activity_ttl_defaults_and_clamps_to_a_positive_value":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherCacheRuntimeBehaviorTest::__pest_evaluable_it_serves_fresh_cached_payloads_without_invoking_the_resolver":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherCacheRuntimeBehaviorTest::__pest_evaluable_it_serves_stale_cached_payloads_and_enqueues_a_refresh_signal":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherCacheRuntimeBehaviorTest::__pest_evaluable_it_recomputes_and_rewrites_cache_payloads_when_stale_window_is_exceeded":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherCacheRuntimeBehaviorTest::__pest_evaluable_it_records_hot_keys_order_insensitively_and_applies_preload_target_caps":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_normalizes_batched_wash_count_rows_into_hourly_slot_totals":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_wires_department_weather_route_to_use_batched_wash_aggregation":0.006,"P\\Tests\\Unit\\Orders\\AttachmentsListManyTest::__pest_evaluable_it_groups_attachments_by_object_id_and_preserves_empty_object_groups":0,"P\\Tests\\Unit\\Orders\\AttachmentsListManyTest::__pest_evaluable_it_keeps_listMany_payload_parity_with_list_for_one_object_id":0,"P\\Tests\\Unit\\Orders\\EconomicModuleOrdersBatchHelpersTest::__pest_evaluable_it_ensures_economic_module_rows_in_one_sanitized_batch":0,"P\\Tests\\Unit\\Orders\\EconomicModuleOrdersBatchHelpersTest::__pest_evaluable_it_returns_id_keyed_economic_module_payload_with_null_defaults":0,"P\\Tests\\Unit\\Orders\\OrdersRouteListBatchingWiringTest::__pest_evaluable_it_wires_GET__orders_through_batched_enrichment_and_stripe_snapshot_caching":0.006,"P\\Tests\\Unit\\Orders\\UsersCashierNamesBatchTest::__pest_evaluable_it_returns_cashier_names_from_cache_and_fetches_missing_ones_in_batch":0,"P\\Tests\\Unit\\Orders\\UsersCashierNamesBatchTest::__pest_evaluable_it_returns_deterministic_map_for_duplicate_and_unsorted_cashier_ids":0,"P\\Tests\\Unit\\Orders\\UsersCashierNamesBatchWiringTest::__pest_evaluable_it_implements_batched_cashier_name_lookup_with_cache_first_fallback_behavior":0.005,"P\\Tests\\Unit\\Orders\\UsersCashierNamesBatchWiringTest::__pest_evaluable_it_sanitizes_and_deduplicates_cashier_ids_before_batch_lookup":0.003,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_counts_overtime_minutes_when_a_shift_carries_an_extended_approval_end_timestamp":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_counts_unapproved_overtime_from_a_bounded_shift_updateTime_fallback":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_does_not_treat_late_unapproved_administrative_edits_as_overtime":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherCacheHelpersTest::__pest_evaluable_it_changes_weather_timeline_cache_key_when_department_weather_targets_change":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherStatusTargetsTest::__pest_evaluable_it_evaluates_healthy_degraded_and_unhealthy_statuses_from_configured_department_targets":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherStatusTargetsTest::__pest_evaluable_it_returns_unknown_when_configured_targets_are_missing_for_department_status_evaluation":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherStatusTargetsTest::__pest_evaluable_it_aggregates_multi_department_slot_statuses_using_worst_severity_and_unknown_fallback_rules":0.046,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTargetsOpenApiSpecTest::__pest_evaluable_it_documents_department_weather_target_endpoints_and_reusable_schemas_in_openapi":0.008,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTargetsOpenApiSpecTest::__pest_evaluable_it_documents_unknown_weather_status_behavior_when_targets_are_missing":0.008,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTargetsRouteWiringTest::__pest_evaluable_it_registers_department_weather_target_routes_with_explicit_read_and_manage_permissions":0.005,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTargetsRouteWiringTest::__pest_evaluable_it_persists_department_weather_targets_using_canonical_department_variable_keys":0.004,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_wires_machine_relay_status_get_and_set_endpoints":0.003,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_batches_sequential_machine_relay_status_requests_into_a_single_Shelly_get_call":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_respects_the_1_request_per_second_Shelly_gate_for_back_to_back_requests":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_retries_missing_Shelly_status_payloads_until_relay_status_becomes_ready":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_times_out_with_a_clear_Shelly_readiness_error_when_payload_remains_missing":0.001,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_uses_direct_set_switch_and_seeds_cache_so_immediate_status_read_does_not_call_Shelly_get":0,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_wires_self_serve_lane_gate_open_endpoint":0.002,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_wires_in_progress_self_serve_wash_details_endpoint":0.002,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_adds_vehicle_type_product_on_STOP_when_program_selector_is_on__then_turns_off_cleaner_machine_and_selector_relays":0.132,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_skips_vehicle_type_product_add_when_program_selector_is_off_and_only_disables_configured_relays":0.001,"P\\Tests\\Unit\\Selfserve\\DepartmentSelfServeEnabledRelaySyncWiringTest::__pest_evaluable_it_syncs_lane_relay_states_when_department_self_serve_enabled_flag_changes":0.003,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_supports_hard_relay_set_even_when_lane_status_is_CLOSED":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStartCleanerRelayWiringTest::__pest_evaluable_it_enables_cleaner_relay_on_wash_start_command_and_webhook_flow":0.008,"P\\Tests\\Unit\\Selfserve\\SelfserveWashCompletionRelayWiringTest::__pest_evaluable_it_forces_machine_relay_off_when_a_self_serve_wash_session_is_completed":0.003,"P\\Tests\\Unit\\Selfserve\\SelfserveLanePortControllerTest::__pest_evaluable_it_opens_exit_port_by_switching_relay__in__id_on":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLanePortControllerTest::__pest_evaluable_it_opens_entrance_port_by_switching_relay__out__id_on":0,"P\\Tests\\Unit\\Selfserve\\SelfserveOpenApiSpecTest::__pest_evaluable_it_documents_in_progress_self_serve_wash_start_and_machine_relay_fields":0.01,"P\\Tests\\Unit\\Selfserve\\SelfserveConditionEvaluatorTest::__pest_evaluable_it_evaluates_typed_task_gates_with_strict_semantics":0,"P\\Tests\\Unit\\Selfserve\\SelfserveConfigVersioningTest::__pest_evaluable_it_validates_typed_task_gates_for_known_references":0.001,"P\\Tests\\Unit\\Selfserve\\SelfserveConfigVersioningTest::__pest_evaluable_it_fails_validation_when_typed_task_gates_reference_unknown_entities":0,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_wires_self_serve_config_draft_publish_rollback_lifecycle_endpoints":0.004,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_keeps_legacy_self_serve_CRUD_routes_syncing_canonical_drafts":0.009,"P\\Tests\\Unit\\Selfserve\\SelfserveStartCleanerRelayWiringTest::__pest_evaluable_it_keeps_cleaner_relay_enable_wired_into_machine_relay_start_paths":0.008,"P\\Tests\\Unit\\Selfserve\\SelfserveConfigVersioningTest::__pest_evaluable_it_stores_config_json_with_apostrophes_without_violating_json_constraints":0.277,"P\\Tests\\Unit\\Selfserve\\SelfserveConfigVersioningTest::__pest_evaluable_it_encodes_config_json_payloads_with_apostrophes_before_persistence":0,"P\\Tests\\Unit\\Selfserve\\SelfserveWashCompletionRelayWiringTest::__pest_evaluable_it_forces_machine_and_cleaner_relays_off_when_a_self_serve_wash_session_is_completed":0.006,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_wires_vehicle_type_override_into_self_serve_preview_and_synchronization_routes":0.005,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_uses_local_demo_responses_and_skips_Shelly_cloud_calls_for_demo_relay_ids":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_returns_default_OFF_status_for_demo_relay_ids_without_Shelly_lookups":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_excludes_demo_relay_ids_from_Shelly_status_batch_payloads":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLanePortControllerTest::__pest_evaluable_it_keeps_demo_relay_gate_open_queued_but_skips_Shelly_switch_calls":0,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_wires_allowed_services_route_through_machine_relay_visibility_sync":0.002,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_enables_MACHINE_relay_when_MACHINE_is_visible_in_allowed_services":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_turns_MACHINE_relay_off_immediately_when_MACHINE_is_not_visible":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_does_not_enable_MACHINE_relay_when_allowEnable_is_false_even_if_MACHINE_is_visible":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_is_a_safe_no_op_when_MACHINE_relay_is_not_configured":0,"P\\Tests\\Unit\\Selfserve\\SelfserveRelayVisibilitySyncWiringTest::__pest_evaluable_it_synchronizes_machine_relay_from_visible_services_during_session_synchronization":0.015,"P\\Tests\\Unit\\Selfserve\\SelfserveRelayVisibilitySyncWiringTest::__pest_evaluable_it_adds_explicit_relay_disable_session_helper_for_visibility_driven_OFF_transitions":0.005,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_wires_self_serve_property_gate_command_permissions":0.009,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneCommandEnumTest::__pest_evaluable_it_parses_property_gate_lane_commands":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLanePropertyGateCommandTest::__pest_evaluable_it_opens_entrance_gate_for_OPEN__PROPERTY__ACCESS__GATE_command":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLanePropertyGateCommandTest::__pest_evaluable_it_opens_exit_gate_for_OPEN__PROPERTY__EXIT__GATE_command":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLanePropertyGateCommandTest::__pest_evaluable_it_blocks_property_gate_commands_when_department_self_serve_is_disabled":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLanePropertyGateCommandTest::__pest_evaluable_it_throws_a_clear_error_when_entrance_gate_is_missing_for_property_access_command":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLanePropertyGateCommandTest::__pest_evaluable_it_wraps_low_level_gate_errors_for_property_access_command_failures":0.002,"P\\Tests\\Unit\\Selfserve\\SelfserveWashFlowMachineAllowedWiringTest::__pest_evaluable_it_reads_machine_allowed_state_from_session_summary_payload_safely":0.005,"P\\Tests\\Unit\\Selfserve\\DbObjectPaginationLegacyColumnCompatibilityTest::__pest_evaluable_it_guards_pagination_against_searchable_fields_missing_from_legacy_schemas":0.004,"P\\Tests\\Unit\\Selfserve\\SelfserveSchemaBootstrapCompatibilityTest::__pest_evaluable_it_adds_dynamic__images__vehicle__type_column_for_legacy_selfserve_wash_session_task_schemas":0.007,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneInvoiceIncludedMinutesTest::__pest_evaluable_it_computes_billable_minutes_when_elapsed_minutes_exceed_included_minutes":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneInvoiceIncludedMinutesTest::__pest_evaluable_it_computes_zero_billable_minutes_when_elapsed_minutes_equal_included_minutes":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneInvoiceIncludedMinutesTest::__pest_evaluable_it_computes_zero_billable_minutes_when_included_minutes_exceed_elapsed_minutes":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneInvoiceIncludedMinutesTest::__pest_evaluable_it_handles_zero_and_low_elapsed_wash_time_edge_cases":0,"P\\Tests\\Unit\\Selfserve\\SelfserveOpenApiSpecTest::__pest_evaluable_it_documents_self_serve_machine_wash_included_minutes_in_config_schemas":0.008,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_wires_machine_wash_included_minutes_into_self_serve_module_config":0.003,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_blocks_explicit_relay_writes_when_department_self_serve_is_disabled":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_returns_disabled_no_op_from_machine_relay_visibility_sync_when_department_self_serve_is_disabled":0,"P\\Tests\\Unit\\Selfserve\\SelfserveOpenApiSpecTest::__pest_evaluable_it_documents_property_gate_lane_commands_and_sanitized_gate_failure_responses":0.009,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_fails_fast_when_workspace_id_is_missing_for_gate_calls":0.024,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_fails_fast_when_channel_id_is_missing_for_gate_calls":0,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_fails_with_terminal_status_details_when_call_never_reaches_accepted_state":0.086,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_hangs_up_when_call_reaches_accepted_state":0,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_hangs_up_immediately_when_status_transitions_to_accepted":0,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_maps_legacy_timeout_option_to_documented_ringTimeout_payload_field":0,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_clamps_derived_ringTimeout_to_Bird_documented_max_when_gate_timeout_is_high":0,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_passes_documented_hangup_cause_when_provided":0,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_drops_unsupported_hangup_cause_values_from_request_payload":0,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_fails_fast_when_workspace_id_is_missing_for_gate_flash_calls":0,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_creates_gate_flash_call_with_documented_ringTimeout_payload":0,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_polls_flash_call_and_succeeds_once_accepted":0,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_fails_flash_gate_flow_when_terminal_failure_status_is_returned":0,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_does_not_fallback_to_regular_gate_call_when_flash_succeeds":0,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_falls_back_to_regular_gate_call_when_flash_fails":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLanePropertyGateCommandTest::__pest_evaluable_it_wraps_low_level_gate_errors_for_property_exit_command_failures":0.002,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_falls_back_to_regular_gate_call_when_flash_caller_id_is_not_confirmed":0,"P\\Tests\\Unit\\Bird\\BirdModuleClientMappingTest::__pest_evaluable_it_maps_voice_call_facade_methods_to_documented_endpoints_and_methods":0.035,"P\\Tests\\Unit\\Bird\\BirdModuleClientMappingTest::__pest_evaluable_it_maps_recordings_insights_log_and_flash_methods_to_documented_resources":0,"P\\Tests\\Unit\\Bird\\BirdModuleClientMappingTest::__pest_evaluable_it_encodes_path_segments_before_building_outbound_endpoints":0,"P\\Tests\\Unit\\Bird\\BirdModuleClientMappingTest::__pest_evaluable_it_serializes_query_parameters_for_GET_transport_requests":0,"P\\Tests\\Unit\\Bird\\BirdModuleClientMappingTest::__pest_evaluable_it_maps_4xx_and_5xx_transport_failures_into_informative_exceptions":0,"P\\Tests\\Unit\\Bird\\BirdModuleClientMappingTest::__pest_evaluable_it_returns_raw_payload_for_malformed_JSON_responses_and_null_for_empty_responses":0.007,"P\\Tests\\Unit\\Bird\\BirdOpenApiSpecTest::__pest_evaluable_it_documents_all_Bird_voice_call_parity_endpoints_including_gather_recordings_insights_and_log":0.012,"P\\Tests\\Unit\\Bird\\BirdOpenApiSpecTest::__pest_evaluable_it_documents_flash_hangup_endpoint_and_marks_end_alias_as_deprecated":0.008,"P\\Tests\\Unit\\Bird\\BirdOpenApiSpecTest::__pest_evaluable_it_defines_request_and_response_schemas_for_Bird_call_command_recording_insight_log_and_flash_payloads":0.01,"P\\Tests\\Unit\\Bird\\BirdRequestValidationTest::__pest_evaluable_it_accepts_valid_payloads_for_create_and_nested_call_flow_commands":0,"P\\Tests\\Unit\\Bird\\BirdRequestValidationTest::__pest_evaluable_it_rejects_unknown_fields_and_invalid_enum_values_in_strict_schemas":0.005,"P\\Tests\\Unit\\Bird\\BirdRequestValidationTest::__pest_evaluable_it_supports_CSV_normalization_in_schema_validation_for_log_filters":0,"P\\Tests\\Unit\\Bird\\BirdRequestValidationTest::__pest_evaluable_it_validates_flash_hangup_payloads_for_both_supported_request_shapes":0,"P\\Tests\\Unit\\Bird\\BirdRequestValidationTest::__pest_evaluable_it_fails_before_forward_step_when_strict_validation_fails_and_forwards_when_valid":0,"P\\Tests\\Unit\\Bird\\BirdRouteWiringTest::__pest_evaluable_it_registers_full_Bird_voice_call_route_surface_with_strict_validation_and_permissions":0.004,"P\\Tests\\Unit\\Bird\\BirdRouteWiringTest::__pest_evaluable_it_registers_flash_hangup_endpoint_and_keeps_end_alias_wired_as_compatibility_path":0.005,"P\\Tests\\Unit\\Bird\\BirdRouteWiringTest::__pest_evaluable_it_keeps_Bird_number_and_webhook_routes_intact":0.009,"P\\Tests\\Unit\\Bird\\BirdModuleClientMappingTest::__pest_evaluable_it_handles_malformed_and_empty_response_bodies_without_throwing_transport_errors":0.005,"P\\Tests\\Unit\\Selfserve\\DepartmentGatesRelaysRouteWiringTest::__pest_evaluable_it_validates_department_gate_config_on_both_create_and_update_routes":0.004,"P\\Tests\\Unit\\Selfserve\\SelfserveSchemaBootstrapCompatibilityTest::__pest_evaluable_it_adds_wash__started__at_column_for_legacy_selfserve_wash_session_schemas":0.003,"P\\Tests\\Unit\\Selfserve\\SelfserveWashStartedAtWiringTest::__pest_evaluable_it_stores_wash__started__at_in_self_serve_wash_sessions_when_machine_start_is_triggered":0.004,"P\\Tests\\Unit\\Selfserve\\SelfserveWashStartedAtWiringTest::__pest_evaluable_it_passes_lane_wash_start_time_into_the_session_machine_start_marker":0.005,"P\\Tests\\Unit\\Selfserve\\SelfserveWashStartedAtWiringTest::__pest_evaluable_it_resolves_in_progress_wash__started__at_from_session_with_compatibility_fallbacks":0.004,"P\\Tests\\Unit\\Bird\\BirdPayloadClassesTest::__pest_evaluable_it_normalizes_say_payload_and_applies_hangup_default":0.029,"P\\Tests\\Unit\\Bird\\BirdPayloadClassesTest::__pest_evaluable_it_normalizes_log_query_csv_and_integer_fields":0,"P\\Tests\\Unit\\Bird\\BirdPayloadClassesTest::__pest_evaluable_it_normalizes_nested_create_call_payload_sections_and_drops_unknown_keys":0,"P\\Tests\\Unit\\Bird\\BirdPayloadClassesTest::__pest_evaluable_it_keeps_gather_nested_say_payload_unchanged_when_hangup_is_omitted":0,"P\\Tests\\Unit\\Bird\\BirdPayloadClassesTest::__pest_evaluable_it_supports_no_body_and_flash_hangup_payload_normalization":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_respects_the_2_second_Shelly_gate_for_back_to_back_requests":0.023,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_enforces_a_2_second_gap_between_sequential_switch_requests_used_by_wash_start_and_stop_flows":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_keeps_back_to_back_get_switch_requests_ordered_through_the_relay_controller":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_executes_sequential_switch_requests_used_by_wash_start_and_stop_flows":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLanePortControllerTest::__pest_evaluable_it_does_not_print_Shelly_switch_responses_to_output":0,"P\\Tests\\Unit\\Selfserve\\ShellyGlobalRateLimitWiringTest::__pest_evaluable_it_enforces_a_global_2_second_Shelly_gate_in_sendPostRequest":0.006,"P\\Tests\\Unit\\Selfserve\\ShellyGlobalRateLimitWiringTest::__pest_evaluable_it_uses_Redis_NX_PX_semantics_for_cross_request_Shelly_rate_limiting":0.004,"P\\Tests\\Unit\\Selfserve\\ShellyGlobalRateLimitBehaviorTest::__pest_evaluable_it_enforces_the_2_second_Shelly_gate_across_separate_request_contexts":0,"P\\Tests\\Unit\\Selfserve\\ShellyGlobalRateLimitBehaviorTest::__pest_evaluable_it_does_not_delay_when_the_Shelly_gate_is_already_expired":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_adds_vehicle_type_product_on_STOP_when_program_selector_relay_is_online__then_turns_off_cleaner_and_machine_relays":0.62,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_skips_vehicle_type_product_add_when_program_selector_relay_is_offline_and_only_disables_configured_relays":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_bills_primary_product_when_selector_relay_is_online_even_if_relay_output_is_off":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneInvoiceModeBillingTest::__pest_evaluable_it_bills_manual_self_serve_stop_using_full_elapsed_minutes_without_included_minute_reduction":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneInvoiceModeBillingTest::__pest_evaluable_it_keeps_included_minute_reduction_for_automatic_mode":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_sends_Slack_on_first_dtmf_input_captured_within_the_300_second_window":0.005,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_does_not_send_Slack_when_dtmf_input_repeats_without_change":0.008,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_sends_Slack_again_when_dtmf_input_changes_within_the_window":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_keeps_gathering_and_does_not_hang_up_before_300_seconds_have_elapsed":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_announces_timeout_waits_10_seconds_and_sends_hangup_once_at_or_after_300_seconds":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_keeps_polling_until_terminal_status_and_only_then_finalizes":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_finalizes_immediately_when_webhook_payload_is_already_terminal_before_timeout_logic":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_does_not_duplicate_timeout_or_hangup_actions_across_retries_and_lock_contention":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_keeps_state_when_polling_fails_so_completion_is_not_falsely_reported":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_sends_Slack_when_dtmf_input_repeats_without_change":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_answers_immediately_once_and_does_not_re_answer_on_subsequent_webhook_retries":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_configures_gather_with_retry_loop_semantics_until_input_is_entered":0.004,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_sends_Slack_when_gather_result_provides_keys_field_instead_of_dtmf":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_sends_Slack_when_gather_conditions_variable_keys_carries_the_entered_value":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_configures_gather_to_check_every_2_seconds_with_retry_loop_semantics_until_input_is_entered":0,"P\\Tests\\Unit\\Users\\UsersAutomaticGetTargetUserFromRequestTest::__pest_evaluable_it_ignores_non_numeric_customer__number_values_from_request":0.042,"P\\Tests\\Unit\\Users\\UsersAutomaticGetTargetUserFromRequestTest::__pest_evaluable_it_casts_numeric_customer__number_strings_to_int_before_lookup":0,"P\\Tests\\Unit\\Users\\UsersAutomaticGetTargetUserFromRequestTest::__pest_evaluable_it_prefers_user__id_when_both_user__id_and_customer__number_are_valid":0,"P\\Tests\\Unit\\Users\\UsersAutomaticGetTargetUserFromRequestTest::__pest_evaluable_it_falls_back_to_customer__number_when_user__id_is_invalid":0,"P\\Tests\\Unit\\Users\\UsersAutomaticGetTargetUserFromRequestTest::__pest_evaluable_it_normalizes_request_identifiers_before_user_lookups":0.004,"P\\Tests\\Unit\\Users\\UsersAutomaticGetTargetUserFromRequestTest::__pest_evaluable_it_rejects_non_positive_and_non_digit_request_values":0.002,"P\\Tests\\Unit\\Invoicing\\CustomerSearchRoutePaginationFallbackTest::__pest_evaluable_it_uses_pagination_results_when_present":0.006,"P\\Tests\\Unit\\Invoicing\\CustomerSearchRoutePaginationFallbackTest::__pest_evaluable_it_falls_back_to_collection_count_when_pagination_metadata_is_missing":0,"P\\Tests\\Unit\\Invoicing\\CustomerSearchRoutePaginationFallbackTest::__pest_evaluable_it_returns_zero_when_neither_pagination_nor_collection_is_available":0,"P\\Tests\\Unit\\Invoicing\\CustomerSearchRoutePaginationFallbackTest::__pest_evaluable_it_counts_object_based_collections_when_pagination_metadata_is_missing":0,"P\\Tests\\Unit\\Invoicing\\EconomicPaymentTermsRouteCollectionExtractionTest::__pest_evaluable_it_uses_collection_when_present":0,"P\\Tests\\Unit\\Invoicing\\EconomicPaymentTermsRouteCollectionExtractionTest::__pest_evaluable_it_falls_back_to_paymentTerms_when_collection_is_missing":0,"P\\Tests\\Unit\\Invoicing\\EconomicPaymentTermsRouteCollectionExtractionTest::__pest_evaluable_it_supports_top_level_array_payloads":0,"P\\Tests\\Unit\\Invoicing\\EconomicPaymentTermsRouteCollectionExtractionTest::__pest_evaluable_it_returns_an_empty_array_when_no_known_collection_shape_exists":0,"P\\Tests\\Unit\\Invoicing\\EconomicAuthTokenFallbackTest::__pest_evaluable_it_uses_grant__2_in_economic__endpoint__t_when_explicitly_requested_and_configured":0,"P\\Tests\\Unit\\Invoicing\\EconomicAuthTokenFallbackTest::__pest_evaluable_it_falls_back_to_grant__1_in_economic__endpoint__t_when_grant__2_is_missing":0.002,"P\\Tests\\Unit\\Invoicing\\EconomicAuthTokenFallbackTest::__pest_evaluable_it_throws_for_missing_required_primary_grant_in_economic__endpoint__t":0.002,"P\\Tests\\Unit\\Invoicing\\EconomicAuthTokenFallbackTest::__pest_evaluable_it_throws_for_missing_app_secret_in_economic__endpoint__t":0,"P\\Tests\\Unit\\Invoicing\\EconomicAuthTokenFallbackTest::__pest_evaluable_it_uses_grant__2_in_legacy_economic__m_when_available":0,"P\\Tests\\Unit\\Invoicing\\EconomicAuthTokenFallbackTest::__pest_evaluable_it_falls_back_to_grant__1_in_legacy_economic__m_when_grant__2_is_missing":0.002,"P\\Tests\\Unit\\Invoicing\\EconomicAuthTokenFallbackTest::__pest_evaluable_it_throws_for_missing_required_primary_grant_in_legacy_economic__m":0.003,"P\\Tests\\Unit\\Invoicing\\EconomicAuthTokenFallbackTest::__pest_evaluable_it_throws_for_missing_app_secret_in_legacy_economic__m":0,"P\\Tests\\Unit\\Invoicing\\CustomerSearchRoutePaginationFallbackTest::__pest_evaluable_it_uses_unfiltered_total_when_no_customer_filters_are_active":0.004,"P\\Tests\\Unit\\Invoicing\\CustomerSearchRoutePaginationFallbackTest::__pest_evaluable_it_uses_filtered_total_when_search_is_active":0,"P\\Tests\\Unit\\Invoicing\\CustomerSearchRoutePaginationFallbackTest::__pest_evaluable_it_uses_filtered_total_when_barred_filter_is_active":0,"P\\Tests\\Unit\\Invoicing\\CustomerSearchRoutePaginationFallbackTest::__pest_evaluable_it_treats__null__search_and_barred_values_as_no_filter":0,"P\\Tests\\Unit\\Invoicing\\CustomerSearchRoutePaginationFallbackTest::__pest_evaluable_it_falls_back_to_filtered_total_when_unfiltered_total_is_missing":0,"P\\Tests\\Unit\\Invoicing\\CustomerSearchRouteEconomicFailureHandlingTest::__pest_evaluable_it_maps_e_conomic_integration_failures_in_customer_listing_to_explicit_502_responses":0.004,"P\\Tests\\Unit\\Invoicing\\CustomerSearchRouteEconomicFailureHandlingTest::__pest_evaluable_it_logs_LIST__CUSTOMERS_success_only_after_pagination_and_customer_mapping_are_completed":0.003,"P\\Tests\\Unit\\Invoicing\\CustomerSearchRouteEconomicFailureHandlingTest::__pest_evaluable_it_guards_against_malformed_customer_list_payloads_before_calling_paginate":0.003,"P\\Tests\\Unit\\Invoicing\\EconomicAuthTokenFallbackTest::__pest_evaluable_it_throws_deterministic_upstream_exceptions_for_non_2xx_endpoint_trait_responses":0,"P\\Tests\\Unit\\Invoicing\\EconomicAuthTokenFallbackTest::__pest_evaluable_it_throws_deterministic_upstream_exceptions_for_non_2xx_legacy_economic__m_responses":0,"P\\Tests\\Unit\\Invoicing\\EconomicAuthTokenFallbackTest::__pest_evaluable_it_returns_raw_payload_unchanged_on_successful_HTTP_statuses":0,"P\\Tests\\Unit\\Invoicing\\EconomicCustomersListResponseValidationTest::__pest_evaluable_it_accepts_valid_list_payloads_that_include_collection_and_pagination_results":0,"P\\Tests\\Unit\\Invoicing\\EconomicCustomersListResponseValidationTest::__pest_evaluable_it_throws_when_pagination_is_missing_from_the_response_payload":0,"P\\Tests\\Unit\\Invoicing\\EconomicCustomersListResponseValidationTest::__pest_evaluable_it_throws_when_upstream_responds_with_an_error_shaped_payload":0,"P\\Tests\\Unit\\Router\\RouterThrowableHandlingTest::__pest_evaluable_it_catches_throwables_during_auto_route_loading_and_maps_them_to_internal_server_errors":0.005,"P\\Tests\\Unit\\Users\\EconomicCustomerZeroHandlingTest::__pest_evaluable_it_does_not_request_e_conomic_customer_data_when_customer_number_is_zero":0.004,"P\\Tests\\Unit\\Users\\EconomicCustomerZeroHandlingTest::__pest_evaluable_it_short_circuits_e_conomic_customer_lookup_for_non_positive_customer_numbers":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueRouteRegistrationTest::__pest_evaluable_it_registers_queued_economic_invoice_endpoints_in_economicInvoiceRoute":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueRouteRegistrationTest::__pest_evaluable_it_registers_collected_invoice_queue_endpoints_in_orderInvoicesRoute":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueSchemaBootstrapTest::__pest_evaluable_it_defines_economic_transfer_queue_jobs_schema_bootstrap_table_and_tracking_columns":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueSchemaBootstrapTest::__pest_evaluable_it_provides_queue_processor_class_constants_and_processing_entrypoint":0.003,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueCronIntegrationTest::__pest_evaluable_it_registers_economic_transfer_queue_cron_task_and_handler":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueOpenApiSpecTest::__pest_evaluable_it_documents_economic_transfer_queue_paths_in_openapi":0.01,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueOpenApiSpecTest::__pest_evaluable_it_documents_economic_transfer_queue_schemas_in_openapi":0.008,"P\\Tests\\Unit\\Invoicing\\EconomicTransferOrderItemSkipTest::__pest_evaluable_it_skips_order_items_with_zero_quantity_for_e_conomic_export":0,"P\\Tests\\Unit\\Invoicing\\EconomicTransferOrderItemSkipTest::__pest_evaluable_it_skips_order_items_with_zero_price_for_e_conomic_export":0,"P\\Tests\\Unit\\Invoicing\\EconomicTransferOrderItemSkipTest::__pest_evaluable_it_keeps_positive_quantity_and_price_items_billable_for_e_conomic_export":0,"P\\Tests\\Unit\\Invoicing\\EconomicTransferOrderItemSkipTest::__pest_evaluable_it_wires_zero_cost_and_zero_quantity_skip_guard_into_transfer_line_builder":0.007,"P\\Tests\\Unit\\Invoicing\\EconomicInvoiceDraftZeroItemSkipWiringTest::__pest_evaluable_it_skips_zero_cost_and_zero_quantity_items_in_legacy_economic_draft_helper":0.011,"P\\Tests\\Unit\\Invoicing\\EconomicTransferOrderItemSkipTest::__pest_evaluable_it_skips_malformed_order_item_payloads_for_e_conomic_export_safety":0,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueHardeningTest::__pest_evaluable_it_hardens_transfer_queue_with_type_validation_retry_caps_and_stale_lock_recovery":0.004,"P\\Tests\\Unit\\Router\\AutoloadRedisCacheValidationTest::__pest_evaluable_it_validates_cached_autoload_paths_before_returning_and_clears_stale_cache_entries":0.004,"P\\Tests\\Unit\\Orders\\OrdersRegistrationDateRangeQueryTest::__pest_evaluable_it_applies_created__at_bounds_directly_in_SQL_when_filtering_orders_by_registration_number":0.001,"P\\Tests\\Unit\\Orders\\OrdersRegistrationDateRangeQueryTest::__pest_evaluable_it_rejects_an_inverted_date_range_for_registration_lookups":0,"P\\Tests\\Unit\\Orders\\OrdersRegistrationDateRangeQueryTest::__pest_evaluable_it_returns_early_when_registration_number_is_blank":0,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueCronIntegrationTest::__pest_evaluable_it_wires_queue_worker_class_loading_for_CLI_queue_action":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueAvailabilityGuardTest::__pest_evaluable_it_guards_all_economic_invoice_queue_endpoints_before_constructing_queue_service":0.012,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueAvailabilityGuardTest::__pest_evaluable_it_guards_all_collected_invoice_queue_endpoints_before_constructing_queue_service":0.011,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueAvailabilityGuardTest::__pest_evaluable_it_uses_a_consistent_unavailable_service_contract_for_missing_queue_dependencies":0.009,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueAvailabilityGuardTest::__pest_evaluable_it_gracefully_handles_unavailable_queue_dependencies_on_collected_invoice_queue_endpoints":0.005,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceEconomicQueueResponseContractTest::__pest_evaluable_it_returns_the_queue_job_id_in_POST__collected_invoices_economic_enqueue_response":0.204,"P\\Tests\\Unit\\Invoicing\\UserCollectedInvoiceUpdateRouteValidationTest::__pest_evaluable_it_requires_id_and_at_least_one_mutable_field_for_PUT__collected_invoices_in_user_route":0.004,"P\\Tests\\Unit\\Invoicing\\UserCollectedInvoiceUpdateRouteValidationTest::__pest_evaluable_it_supports_independent_po__number_and_closed__at_updates_for_PUT__collected_invoices_in_user_route":0.002,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceEconomicQueueResponseContractTest::__pest_evaluable_it_returns_queued_contract_for_POST__collected_invoices_stripe_book":0.002,"P\\Tests\\Unit\\Invoicing\\EconomicDraftQueueOnlyRouteBehaviorTest::__pest_evaluable_it_keeps_order_draft_export_route_queue_only":0.006,"P\\Tests\\Unit\\Invoicing\\EconomicDraftQueueOnlyRouteBehaviorTest::__pest_evaluable_it_keeps_collected_invoice_draft_producing_routes_queue_only_in_orderInvoicesRoute":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueAvailabilityGuardTest::__pest_evaluable_it_guards_collected_invoice_and_stripe_draft_producing_endpoints_before_constructing_queue_service":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueOpenApiSpecTest::__pest_evaluable_it_documents_unavailable_queue_dependency_responses_for_async_economic_transfer_endpoints":0.007,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueuePayloadValidationTest::__pest_evaluable_it_normalizes_order_payloads_to_strict_positive_integer_ids":0,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueuePayloadValidationTest::__pest_evaluable_it_normalizes_collected_invoice_payload_booleans_to_strict_bool_values":0,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueuePayloadValidationTest::__pest_evaluable_it_rejects_invalid_transfer_payloads_before_enqueue_write_attempts":0,"P\\Tests\\Integration\\Invoicing\\EconomicTransferQueueIntegrationTest::__pest_evaluable_it_processes_queued_transfer_jobs_to_completion":0.016,"P\\Tests\\Integration\\Invoicing\\EconomicTransferQueueIntegrationTest::__pest_evaluable_it_deduplicates_active_jobs_per_transfer_target":0.016,"P\\Tests\\Integration\\Invoicing\\EconomicTransferQueueIntegrationTest::__pest_evaluable_it_rejects_invalid_payloads_without_inserting_queue_rows":0.013,"P\\Tests\\Integration\\Invoicing\\EconomicTransferQueueIntegrationTest::__pest_evaluable_it_supports_fail_retry_and_reprocess_lifecycle_transitions":0.014,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueAvailabilityGuardTest::__pest_evaluable_it_keeps_queue_guards_on_economic_invoice_queue_status_and_retry_routes":0.005,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueAvailabilityGuardTest::__pest_evaluable_it_supports_synchronous_fallback_branches_before_queue_enqueue_on_economic_invoice_export_routes":0.005,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueAvailabilityGuardTest::__pest_evaluable_it_keeps_queue_status_endpoints_guarded_while_collected_invoice_export_routes_support_synchronous_fallback":0.005,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueAvailabilityGuardTest::__pest_evaluable_it_uses_a_consistent_unavailable_service_contract_for_queue_status_lifecycle_endpoints":0.01,"P\\Tests\\Unit\\Invoicing\\EconomicDraftQueueOnlyRouteBehaviorTest::__pest_evaluable_it_supports_synchronous_fallback_and_queued_processing_for_order_draft_export_route":0.006,"P\\Tests\\Unit\\Invoicing\\EconomicDraftQueueOnlyRouteBehaviorTest::__pest_evaluable_it_supports_synchronous_fallback_and_queued_processing_for_collected_invoice_draft_producing_routes":0.004,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceEconomicQueueResponseContractTest::__pest_evaluable_it_documents_both_synchronous_fallback_and_queued_response_contracts_for_POST__collected_invoices_economic":0.023,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceEconomicQueueResponseContractTest::__pest_evaluable_it_documents_both_synchronous_fallback_and_queued_response_contracts_for_POST__collected_invoices_stripe_book":0.006,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueOpenApiSpecTest::__pest_evaluable_it_documents_200_fallback_plus_202_queue_contracts_for_export_endpoints_and_keeps_503_on_queue_lifecycle_endpoints":0.009,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueRouteHardeningTest::__pest_evaluable_it_returns_pagination_metadata_and_strict_status_handling_for_collected_invoice_queue_list":0.006,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueRouteHardeningTest::__pest_evaluable_it_enforces_retry_constraints_for_collected_invoice_queue_jobs_before_retry_execution":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueOpenApiSpecTest::__pest_evaluable_it_documents_collected_queue_list_metadata_and_strict_status_filter_enum_in_openapi":0,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueDetailsSummaryBuilderTest::__pest_evaluable_it_builds_a_completed_collected_invoice_queue_summary_from_payload_and_result":0.006,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueDetailsSummaryBuilderTest::__pest_evaluable_it_prefers_queue_error_messages_for_failed_jobs_and_keeps_null_safe_outcome_fields":0,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueDetailsSummaryBuilderTest::__pest_evaluable_it_uses_deterministic_status_message_fallback_when_no_explicit_message_exists":0,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueDetailsSummaryBuilderTest::__pest_evaluable_it_handles_object_payload_result_values_and_malformed_fields_without_throwing":0,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueWorkerTickRouteTest::__pest_evaluable_it_ticks_collected_invoice_transfer_queue_from_queue_list_and_status_routes":0.008,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueWorkerTickRouteTest::__pest_evaluable_it_ticks_order_transfer_queue_from_draft_and_invoice_status_routes":0.009,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodQueueOverlayTest::__pest_evaluable_it_marks_queued_transactions_and_clears_requires__action_when_all_actionable_work_is_already_queued":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodQueueOverlayTest::__pest_evaluable_it_keeps_requires__action_true_when_a_customer_still_has_unqueued_actionable_transactions":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodQueueOverlayTest::__pest_evaluable_it_blocks_fixed_pricing_or_subscription_customers_with_no_transactions_when_a_relevant_queue_job_exists":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerCommandQueueTest::__pest_evaluable_it_queues_admin_commands__exposes_agent_poll_result_handlers__and_keeps_heartbeats_from_mutating_discovery_state":0.003,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerCommandQueueTest::__pest_evaluable_it_defines_the_dispatchable_gateway_guard_on_the_loaded_manager_class":0.009,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerHeartbeatStatusTest::__pest_evaluable_it_derives_effective_gateway_status_from_heartbeat_freshness with data set \"dataset \"recent heartbeat stays online\"\"":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerHeartbeatStatusTest::__pest_evaluable_it_derives_effective_gateway_status_from_heartbeat_freshness with data set \"dataset \"late heartbeat degrades after one minute\"\"":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerHeartbeatStatusTest::__pest_evaluable_it_derives_effective_gateway_status_from_heartbeat_freshness with data set \"dataset \"stale heartbeat goes offline after five minutes\"\"":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerHeartbeatStatusTest::__pest_evaluable_it_derives_effective_gateway_status_from_heartbeat_freshness with data set \"dataset \"explicit offline reports stay offline even when heartbeat is fresh\"\"":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerHeartbeatStatusTest::__pest_evaluable_it_derives_effective_gateway_status_from_heartbeat_freshness with data set \"dataset \"missing heartbeat is treated as offline\"\"":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerHeartbeatStatusTest::__pest_evaluable_it_marks_ready_discovery_as_stale_when_the_gateway_heartbeat_has_expired":0.317,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayRouteWiringTest::__pest_evaluable_it_registers_the_edge_gateway_management_REST_endpoints":0.021,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayRouteWiringTest::__pest_evaluable_it_registers_public_installer__claim__heartbeat__command_polling__and_internal_broker_auth_endpoints":0.004,"P\\Tests\\Unit\\Selfserve\\EdgeBrokerClientConfigTest::__pest_evaluable_it_uses_the_same_default_broker_url_and_shared_secret_fallback_as_the_docker_stack":0.267,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_builds_install_script_urls_with_forwarded_https_scheme_when_proxied":0.336,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_appends_forwarded_ports_when_the_forwarded_host_omits_them":0.116,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_infers_https_for_the_staging_api_host_when_only_the_https_port_is_present":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_prefers_EDGE__PUBLIC__API__URL_when_explicitly_configured":0.425,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_normalizes_public_broker_overrides_to_https_and_browser_shell_urls_to_wss":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_keeps_localhost_broker_overrides_on_plain_http_and_ws_for_local_development":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_includes_node_pty_build_prerequisites_in_the_generated_install_script":0.007,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_prefers_EDGE__PUBLIC__API__URL_when_explicitly_configured_and_derives_the_broker_from_the_api_origin":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_normalizes_public_broker_overrides_to_https__strips_paths__and_browser_shell_urls_to_wss":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerHeartbeatStatusTest::__pest_evaluable_it_merges_incoming_heartbeat_metadata_with_existing_gateway_metadata":0.009,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayRouteWiringTest::__pest_evaluable_it_registers_the_v2_operator_facing_edge_gateway_routes":0.004,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayRouteWiringTest::__pest_evaluable_it_registers_PHP_edge_agent_routes_for_operations_and_legacy_relay_command_polling":0.013,"P\\Tests\\Unit\\Selfserve\\EdgeGatewaySchemaBootstrapTest::__pest_evaluable_it_defines_the_v2_edge_gateway_schema_bootstrap_tables":0.005,"P\\Tests\\Unit\\Selfserve\\EdgeGatewaySchemaBootstrapTest::__pest_evaluable_it_stores_operation_metadata_and_event_timelines_for_management_workflows":0.003,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayUpdateLifecycleTest::__pest_evaluable_it_builds_the_installer_around_the_PHP_agent_artifacts_and_management_polling_config":0.011,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayUpdateLifecycleTest::__pest_evaluable_it_exposes_update_payload__credential_rotation__and_operation_endpoints_without_shell_transport_wiring":0.013,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerCommandQueueTest::__pest_evaluable_it_keeps_relay_dispatch_and_discovery_queueing_on_the_edge_gateway_manager":0.01,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerCommandQueueTest::__pest_evaluable_it_loads_relay_command_helpers_on_the_manager_and_gateway_operations_on_the_dedicated_service":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerHeartbeatStatusTest::__pest_evaluable_it_derives_relay_fallback_and_transport_health_details_without_shell_or_update_runtime_state":0.331,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayArtifactLocatorTest::__pest_evaluable_it_resolves_edge_agent_artifacts_from_the_source_tree_layout":0.445,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayArtifactLocatorTest::__pest_evaluable_it_includes_the_container_mounted_artifact_directory_as_a_candidate":0.021,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayArtifactLocatorTest::__pest_evaluable_it_reads_install_artifacts_through_the_shared_locator":0.008,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayArtifactLocatorTest::__pest_evaluable_it_builds_update_payloads_with_checksums_from_resolved_artifact_paths":0.318,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayArtifactLocatorTest::__pest_evaluable_it_resolves_edge_agent_artifacts_from_a_supported_runtime_layout":0.018,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_builds_install_script_urls_with_the_PHP_agent_artifacts_and_forwarded_https_scheme":0.001,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayArtifactLocatorTest::__pest_evaluable_it_explains_the_legacy_dist_mount_mismatch_when_php_artifacts_are_unavailable":0.001,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayArtifactLocatorTest::__pest_evaluable_it_prioritizes_mounted_and_baked_in_artifact_directories_before_repo_fallbacks":0.022,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayArtifactLocatorTest::__pest_evaluable_it_falls_back_to_baked_in_artifacts_when_the_mount_path_is_absent":0.001,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayArtifactLocatorTest::__pest_evaluable_it_prioritizes_router_resources_before_mounted_and_baked_in_artifact_directories":0,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_lists_orders_for_an_admin_scoped_user_and_limits_the_results_to_the_permitted_departments":1.109,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_lists_only_the_targeted_customer_orders_for_subuser_sessions":2.935,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_returns_the_current_auth_and_permission_failures_when_order_listing_is_not_allowed":1.375,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_creates_orders_through_the_real_endpoint":0.982,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_rejects_invalid_order_creation_requests":3.423,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_updates_orders_through_the_primary_endpoint":1.13,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_reassigns_invoice_collections_when_changing_an_order_across_the_draft_customer_boundary":1.615,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_supports_legacy_field_value_metadata_updates_through_the_primary_endpoint":5.592,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_rejects_invalid_updates_through_the_primary_order_endpoint":1.29,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_updates_orders_through_the_legacy_alias_endpoint":1.517,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_supports_legacy_field_value_metadata_updates_through_the_alias_endpoint":4.136,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_rejects_invalid_updates_through_the_legacy_alias_endpoint":0.512,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_rejects_unsupported_legacy_field_value_updates_on_both_update_endpoints":0.965,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_deletes_orders_through_the_real_endpoint":1.045,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_rejects_invalid_order_delete_requests":1.64,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_regenerates_attached_wash_certificates_when_certificate_metadata_changes_through_the_primary_endpoint":3.683,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_regenerates_attached_wash_certificates_for_legacy_field_value_updates_through_the_alias_endpoint":3.194,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayOperationLegacySchemaCompatibilityTest::__pest_evaluable_it_keeps_the_legacy_operation__type_column_compatible_with_v2_operation_queueing":0.013,"P\\Tests\\Unit\\Bookings\\OrderBookingsListCacheTest::__pest_evaluable_it_uses_sane_ttl_defaults_and_clamps_negative_ttl_to_zero":0,"P\\Tests\\Unit\\Bookings\\OrderBookingsListCacheTest::__pest_evaluable_it_builds_deterministic_keys_for_equivalent_contexts":0,"P\\Tests\\Unit\\Bookings\\OrderBookingsListCacheTest::__pest_evaluable_it_stores_and_retrieves_full_order_bookings_payloads":0,"P\\Tests\\Unit\\Bookings\\OrderBookingsListCacheTest::__pest_evaluable_it_ignores_malformed_cached_payloads_and_clears_order_bookings_list_caches":0,"P\\Tests\\Unit\\Bookings\\OrderBookingsRouteCacheWiringTest::__pest_evaluable_it_caches_the_paginated_order_bookings_list_response_and_invalidates_it_on_booking_changes":0.006,"P\\Tests\\Unit\\Bookings\\VehicleSearchBookedMetadataRouteContractTest::__pest_evaluable_it_keeps_booked_vehicle_search_metadata_aligned_with_filtered_pending_order_bookings":0.004,"P\\Tests\\Unit\\Bookings\\OrderBookingsCountsCacheTest::__pest_evaluable_it_uses_sane_ttl_defaults_and_clamps_negative_ttl_to_zero":0,"P\\Tests\\Unit\\Bookings\\OrderBookingsCountsCacheTest::__pest_evaluable_it_builds_deterministic_keys_for_equivalent_count_contexts":0.006,"P\\Tests\\Unit\\Bookings\\OrderBookingsCountsCacheTest::__pest_evaluable_it_stores_and_retrieves_normalized_booking_counts":0,"P\\Tests\\Unit\\Bookings\\OrderBookingsCountsCacheTest::__pest_evaluable_it_ignores_malformed_payloads_and_clears_order_bookings_count_caches":0,"P\\Tests\\Unit\\Bookings\\OrderBookingsCountsRouteWiringTest::__pest_evaluable_it_adds_a_cached_order_bookings_counts_endpoint_and_invalidates_it_on_booking_changes":0.01,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayFleetUsageStatisticsTest::__pest_evaluable_it_summarizes_fleet_usage_statistics_for_the_dashboard_landing_view":0,"P\\Tests\\Api\\ApiCoverageManifestTest::__pest_evaluable_it_keeps_every_selected_API_operation_covered_by_happy_path_and_failure_tests":0.271,"P\\Tests\\Api\\ApiCoverageManifestTest::__pest_evaluable_it_keeps_the_OpenAPI_manifest_entries_aligned_with_the_API_spec":0.097,"P\\Tests\\Api\\ApiFixturesCleanupTest::__pest_evaluable_it_removes_generated_customer_traces_during_fixture_cleanup":8.099,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_logs_in_with_valid_customer_credentials":0,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_rejects_invalid_login_payloads_and_credentials":0,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_returns_the_cached_auth_session_payload_for_a_valid_token":0,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_includes_economic_runtime_config_for_uncached_auth_sessions":0,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_rejects_invalid_auth_session_tokens":0,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_logs_out_and_invalidates_the_token_for_future_session_calls":0,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_logs_out_and_invalidates_cached_subuser_sessions":0,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_rejects_invalid_logout_tokens":0,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_returns_the_raw_202_gather_webhook_contract_over_HTTP":0.788,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_still_prompts_for_department_selection_when_only_one_department_is_eligible":0.732,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_accepts_the_legacy_initial_webhook_body_with_top_level_call_identifiers":0.692,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_returns_native_flow_gather_data_after_a_top_level_department_selection_when_distinct_gate_choices_exist":1.515,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_opens_the_gate_immediately_after_a_top_level_department_selection_when_entrance_and_exit_share_the_same_gate":1.719,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_uses_a_multi_digit_gather_contract_when_10_departments_are_eligible":0.587,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_returns_a_raw_400_transport_error_for_malformed_webhook_payloads":0.419,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_lists_only_visible_departments_and_can_return_a_single_department_with_the_slack_webhook":1.048,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_rejects_department_listing_when_the_permission_is_missing":0.378,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_creates_departments_through_the_real_endpoint":0.59,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_rejects_invalid_department_create_requests":1.554,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_updates_departments_through_the_real_endpoint":0.788,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_rejects_invalid_department_update_requests":1.552,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_lists_department_categories_for_a_department":1.006,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_rejects_invalid_department_category_requests":1.191,"P\\Tests\\Api\\EconomicDraftCustomerApiTest::__pest_evaluable_it_lists_the_draft_customer_config_entry_in_economic_config_responses":0,"P\\Tests\\Api\\EconomicDraftCustomerApiTest::__pest_evaluable_it_round_trips_the_draft_customer_config_value_through_economic_config_updates":0,"P\\Tests\\Api\\EconomicDraftCustomerApiTest::__pest_evaluable_it_rejects_order_draft_exports_for_the_configured_draft_customer":0,"P\\Tests\\Api\\EconomicDraftCustomerApiTest::__pest_evaluable_it_rejects_booked_invoice_exports_for_the_configured_draft_customer":0,"P\\Tests\\Api\\EconomicDraftCustomerApiTest::__pest_evaluable_it_rejects_collected_invoice_exports_for_the_configured_draft_customer":0,"P\\Tests\\Api\\PingApiTest::__pest_evaluable_it_returns_the_ping_contract":0.877,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_returns_a_setup_required_error_when_department_terminal_readers_are_requested_without_terminal_setup":1.281,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_sends_a_Stripe_invoice_by_email_and_persists_the_hosted_invoice_association":5.434,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_returns_a_conflict_when_a_Stripe_hosted_invoice_is_already_active_for_the_order":4.756,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_allows_sending_a_new_Stripe_hosted_invoice_when_the_existing_association_is_already_terminal":3.943,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_voids_an_unpaid_Stripe_hosted_invoice_and_clears_the_local_order_association":3.746,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_refuses_to_cancel_a_paid_Stripe_hosted_invoice":4.131,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_returns_a_setup_required_error_when_creating_a_payment_intent_for_a_department_without_terminal_setup":0.726,"P\\Tests\\Api\\VehiclesApiTest::__pest_evaluable_it_returns_the_newest_vehicle_last__order__id_that_still_has_order_items":1.326,"P\\Tests\\Api\\VehiclesApiTest::__pest_evaluable_it_returns_a_null_vehicle_last__order__id_when_no_order_with_items_exists":1.159,"P\\Tests\\Unit\\Users\\EconomicCustomerModelParsingTest::__pest_evaluable_it_parses_cached_economic_customer_payloads_that_use_snake__case_customer__number":0,"P\\Tests\\Unit\\Users\\EconomicCustomerModelParsingTest::__pest_evaluable_it_leaves_the_economic_customer_model_empty_when_no_valid_customer_number_is_present":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayFleetUsageStatisticsTest::__pest_evaluable_it_derives_fleet_usage_directly_from_cached_gateway_row_summaries":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_builds_install_script_urls_with_the_compose_edge_gateway_artifacts_and_forwarded_https_scheme":0.427,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayMetadataUpdateContractTest::__pest_evaluable_it_adds_a_gateway_metadata_update_endpoint_with_label_and_primary_assignment_fields":0.007,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayMetadataUpdateContractTest::__pest_evaluable_it_reassigns_department_primary_gateways_through_dedicated_manager_helpers":0.007,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayShellPollingTransportTest::__pest_evaluable_it_removes_shell_access_from_the_edge_gateway_HTTP_contracts":0.007,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayUpdateLifecycleTest::__pest_evaluable_it_builds_the_installer_around_the_compose_stack_artifacts_and_management_polling_config":0.053,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayViewCacheTest::__pest_evaluable_it_uses_sane_ttl_defaults_and_deterministic_cache_keys":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayViewCacheTest::__pest_evaluable_it_stores_and_retrieves_cached_list_and_detail_payloads":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayViewCacheTest::__pest_evaluable_it_syncs_gateway_snapshots_into_cached_list_payloads_and_refreshes_fleet_usage":0.001,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayViewCacheTest::__pest_evaluable_it_removes_deleted_gateways_from_cached_list_and_detail_payloads":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayUpdateLifecycleTest::__pest_evaluable_it_exposes_update_payload__credential_rotation__cancel_endpoints__and_operation_endpoints_without_shell_transport_wiring":0.015,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayModuleRouteWiringTest::__pest_evaluable_it_registers_module_scoped_edge_gateway_operator_routes":0.006,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayModuleRouteWiringTest::__pest_evaluable_it_registers_edge_gateway_module_config_endpoints":0.006,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayModuleRouteWiringTest::__pest_evaluable_it_registers_edge_gateway_config_endpoints_from_the_module_route_directory":0.007,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayModuleRouteWiringTest::__pest_evaluable_it_keeps_only_the_module_facade_in_the_global_classes_directory_and_conditionally_loads_module_routes":0.003,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayInstallSessionLifecycleTest::__pest_evaluable_it_caps_install_session_diagnostics_and_events_while_preserving_the_first_start_timestamp":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayInstallSessionLifecycleTest::__pest_evaluable_it_clears_terminal_failure_details_after_a_successful_claim_update":0.001,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayInstallSessionLifecycleTest::__pest_evaluable_it_marks_expired_non_terminal_install_sessions_as_terminal_when_read_back":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_builds_websocket_broker_urls_on_the_traefik_broker_path":0.422,"P\\Tests\\Unit\\Selfserve\\DepartmentGateConfigRelayTest::__pest_evaluable_it_validates_relay_gate_configs_and_keeps_relay_specific_fields_in_the_payload":0,"P\\Tests\\Unit\\Selfserve\\DepartmentGateConfigRelayTest::__pest_evaluable_it_rejects_relay_gate_configs_without_a_logical_relay_id":0,"P\\Tests\\Unit\\Bird\\DepartmentGatesRelayOpenTest::__pest_evaluable_it_dispatches_relay_backed_gates_through_the_edge_gateway_relay_manager":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayDepartmentWorkspaceContractTest::__pest_evaluable_it_defines_the_department_hardware_workspace_service_payload_surface":0.009,"P\\Tests\\Unit\\Selfserve\\PlateScannerWorkspaceContractTest::__pest_evaluable_it_adds_lane_aware_scanner_management_and_a_dedicated_rotate_key_action":0.008,"P\\Tests\\Unit\\Selfserve\\PlateScannerWorkspaceContractTest::__pest_evaluable_it_uses_the_scanner_default_lane_before_requiring_an_explicit_lane__id_in_machine_button_webhooks":0.005,"P\\Tests\\Unit\\Selfserve\\GatewayShellyTransportTest::__pest_evaluable_it_maps_gateway_relay_status_responses_into_the_Shelly_cloud_payload_shape":0,"P\\Tests\\Unit\\Selfserve\\GatewayShellyTransportTest::__pest_evaluable_it_maps_gateway_relay_switch_responses_into_the_Shelly_cloud_payload_shape":0,"P\\Tests\\Unit\\Selfserve\\GatewayShellyTransportTest::__pest_evaluable_it_requires_a_valid_department_id_for_gateway_transport_requests":0,"P\\Tests\\Unit\\Selfserve\\GatewayShellyTransportTest::__pest_evaluable_it_rejects_unsupported_gateway_transport_endpoints":0,"P\\Tests\\Unit\\Selfserve\\GatewayShellyTransportTest::__pest_evaluable_it_surfaces_binding_lookup_failures_while_resolving_relay_state_through_the_gateway_transport":0,"P\\Tests\\Unit\\Selfserve\\GatewayShellyTransportTest::__pest_evaluable_it_surfaces_offline_gateway_failures_while_dispatching_relay_switch_commands":0,"P\\Tests\\Api\\PlateScannersApiTest::__pest_evaluable_it_returns_the_updated_lane_id_after_editing_a_scanner_whose_null_lane_was_already_cached":21.835,"P\\Tests\\Api\\PlateScannersApiTest::__pest_evaluable_it_rejects_plate_scanner_edits_when_the_permission_is_missing":7.837,"P\\Tests\\Unit\\Selfserve\\ShellyRelayInventoryTest::__pest_evaluable_it_normalizes_owned_Shelly_devices_into_relay_select_options":0,"P\\Tests\\Unit\\Selfserve\\ShellyRelayInventoryTest::__pest_evaluable_it_fails_fast_when_Shelly_inventory_does_not_include_owned_devices_status":0,"P\\Tests\\Unit\\Selfserve\\DepartmentLaneRelayOptionsRouteWiringTest::__pest_evaluable_it_registers_a_department_lane_relay_options_endpoint_backed_by_Shelly_inventory":0.003,"P\\Tests\\Unit\\Selfserve\\DepartmentLaneRelayNullificationRouteWiringTest::__pest_evaluable_it_nullifies_department_lane_relay_fields_when_blank_select_values_are_submitted":0.006,"P\\Tests\\Api\\EdgeGatewayAgentApiTest::__pest_evaluable_it_serves_installer_artifacts_and_recovers_gateway_runtime_status_after_fresh_heartbeats":109.487,"P\\Tests\\Api\\EdgeGatewayAgentApiTest::__pest_evaluable_it_polls_operations_and_commands__submits_results__and_records_broker_presence_for_task_pages":229.768,"P\\Tests\\Api\\EdgeGatewayAgentApiTest::__pest_evaluable_it_rejects_missing_and_invalid_edge_agent_tokens":12.815,"P\\Tests\\Api\\EdgeGatewayBrokerApiTest::__pest_evaluable_it_validates_broker_sessions_and_ingests_presence__telemetry__logs__and_shell_lifecycle_data":180.867,"P\\Tests\\Api\\EdgeGatewayBrokerApiTest::__pest_evaluable_it_builds_broker_backlog_and_completes_gateway_operations_through_broker_endpoints":147.749,"P\\Tests\\Api\\EdgeGatewayBrokerApiTest::__pest_evaluable_it_rejects_invalid_edge_broker_shared_secrets":6.832,"P\\Tests\\Api\\EdgeGatewayOperatorApiTest::__pest_evaluable_it_creates_install_tokens__tracks_installer_status__and_exposes_claimed_gateway_detail_to_authorized_operators":134.744,"P\\Tests\\Api\\EdgeGatewayOperatorApiTest::__pest_evaluable_it_manages_edge_gateway_metadata__bindings__operations__sessions__rotation__cutover__and_deletion":272.219,"P\\Tests\\Api\\EdgeGatewayOperatorApiTest::__pest_evaluable_it_rejects_operator_edge_routes_when_module_permission_or_department_access_is_missing":46.681,"P\\Tests\\Integration\\EdgeGateway\\EdgeGatewayBackendIntegrationTest::__pest_evaluable_it_persists_install_session_updates_and_derives_gateway_runtime_status_from_heartbeats":0.015,"P\\Tests\\Integration\\EdgeGateway\\EdgeGatewayBackendIntegrationTest::__pest_evaluable_it_assembles_tasks__logs__statistics__operations__commands__and_shell_lifecycle_state_from_persisted_records":0.019,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_builds_localhost_websocket_broker_urls_on_the_local_traefik_api_prefix":0.573,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_keeps_root_host_api_urls_unprefixed_when_the_request_is_not_under_the_local_api_alias":0.271,"P\\Tests\\Unit\\Customers\\CustomerMassImportServiceTest::__pest_evaluable_it_imports_a_matching_e_conomic_customer_into_the_local_system_when_no_local_record_exists":0.001,"P\\Tests\\Unit\\Customers\\CustomerMassImportServiceTest::__pest_evaluable_it_reports_when_the_local_customer_already_has_a_login_account":0,"P\\Tests\\Unit\\Customers\\CustomerMassImportServiceTest::__pest_evaluable_it_creates_a_new_e_conomic_customer_and_returns_a_created_result_for_new_rows":0,"P\\Tests\\Unit\\Customers\\CustomerMassImportServiceTest::__pest_evaluable_it_creates_the_economic_record_for_an_existing_local_account_when_no_matching_upstream_customer_exists":0,"P\\Tests\\Unit\\Customers\\CustomerMassImportServiceTest::__pest_evaluable_it_rejects_CVR_conflicts_when_the_upstream_customer_number_does_not_match_the_submitted_phone_number":0,"P\\Tests\\Unit\\Customers\\CustomerMassImportServiceTest::__pest_evaluable_it_registers_the_customer_import_route_and_wires_it_through_the_mass_import_service":0.005,"P\\Tests\\Unit\\Users\\UsersCustomerNamesCacheTest::__pest_evaluable_it_builds_customer_name_cache_payloads_from_economic_data_or_display_name_fallbacks":0,"P\\Tests\\Unit\\Users\\UsersCustomerNamesCacheTest::__pest_evaluable_it_guards_bulk_customer_name_cache_writes_behind_a_resolved_payload_check":0.003,"P\\Tests\\Api\\EdgeGatewayOperatorApiTest::__pest_evaluable_it_ignores_and_soft_deletes_edge_gateways_whose_department_no_longer_exists":35.946,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerHeartbeatStatusTest::__pest_evaluable_it_only_trusts_broker_presence_while_the_broker_heartbeat_is_fresh":0.664,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerHeartbeatStatusTest::__pest_evaluable_it_refreshes_broker_presence_from_broker_telemetry_heartbeats":0.005,"P\\Tests\\Unit\\Selfserve\\ShellyTransportResolverTest::__pest_evaluable_it_resolves_the_injected_gateway_transport_when_a_department_is_in_gateway_mode":0,"P\\Tests\\Unit\\Selfserve\\ShellyTransportResolverTest::__pest_evaluable_it_resolves_the_injected_cloud_transport_when_a_department_is_in_cloud_mode":0,"P\\Tests\\Unit\\Selfserve\\ShellyTransportResolverTest::__pest_evaluable_it_lets_relay_tests_override_the_department_transport_without_changing_department_mode":0,"P\\Tests\\Unit\\Selfserve\\ShellyRelayInventoryTest::__pest_evaluable_it_falls_back_to_local_device_and_control_names_when_Shelly_cloud_list_metadata_is_unavailable":0,"P\\Tests\\Unit\\Selfserve\\GatewayShellyTransportTest::__pest_evaluable_it_uses_local_only_gateway_dispatch_for_explicit_local_transport_overrides":0,"P\\Tests\\Unit\\Selfserve\\ShellyTransportResolverTest::__pest_evaluable_it_marks_non_injected_local_overrides_as_local_only_gateway_transport":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLanePortControllerTest::__pest_evaluable_it_opens_exit_port_by_switching_relay__out__id_on":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLanePortControllerTest::__pest_evaluable_it_opens_entrance_port_by_switching_relay__in__id_on":0,"P\\Tests\\Unit\\Selfserve\\GatewayShellyTransportTest::__pest_evaluable_it_forwards_Shelly_toggle__after_timers_to_gateway_relay_switches":0,"P\\Tests\\Unit\\Selfserve\\ShellyTransportResolverTest::__pest_evaluable_it_marks_non_injected_local_and_gateway_overrides_as_local_only_gateway_transport":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_preserves_local_gateway_diagnostic_metadata_on_relay_status_snapshots":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_includes_positive_relay_timers_in_Shelly_switch_payloads":0,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_applies_Shelly_transport_overrides_across_self_serve_relay_side_effect_routes":0.002,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayLegacyRouteShimTest::__pest_evaluable_it_keeps_guarded_legacy_root_shims_for_moved_edge_gateway_routes":0.01,"P\\Tests\\Integration\\EdgeGateway\\EdgeGatewayBackendIntegrationTest::__pest_evaluable_it_persists_gateway_cutover_relay_bindings_used_by_self_serve_Shelly_dispatch":0.015,"P\\Tests\\Unit\\Selfserve\\SelfserveLanePortControllerTest::__pest_evaluable_it_passes_explicit_timer_values_when_opening_lane_gates":0,"P\\Tests\\Unit\\Selfserve\\ShellyRelayInventoryTest::__pest_evaluable_it_keeps_Shelly_1_Mini_Gen3_type__model__and_generation_aligned_with_Shelly_metadata":0,"P\\Tests\\Api\\EdgeGatewayBrokerApiTest::__pest_evaluable_it_rejects_shell_session_creation_while_broker_presence_is_unavailable":23.503,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayModuleRouteWiringTest::__pest_evaluable_it_registers_broker_settings_as_editable_edge_gateway_module_config":0.005,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_wires_self_serve_session_management_endpoints_and_OpenAPI_coverage":0.009,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_keeps_self_serve_force_stop_distinct_from_normal_STOP_relay_and_gate_behavior":0.011,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_keeps_read_only_self_serve_preview_and_summary_refreshes_from_touching_relay_hardware":0.002,"P\\Tests\\Unit\\Selfserve\\SelfserveWashFlowMachineAllowedWiringTest::__pest_evaluable_it_separates_session_synchronization_from_relay_hardware_synchronization":0.014,"P\\Tests\\Unit\\Selfserve\\ShellyRealRequestGuardTest::__pest_evaluable_it_blocks_and_records_test_mode_Shelly_POST_requests_before_cURL_can_run":0.001,"P\\Tests\\Unit\\Selfserve\\ShellyRealRequestGuardTest::__pest_evaluable_it_blocks_and_records_test_mode_Shelly_GET_requests_before_cURL_can_run":0,"P\\Tests\\Unit\\Selfserve\\ZZZShellyGuardSafetyMetaTest::__pest_evaluable_it_did_not_record_any_real_Shelly_request_attempts_during_self_serve_tests":0,"P\\Tests\\Api\\SelfserveFixtureApiTest::__pest_evaluable_it_creates_a_comprehensive_self_serve_API_scenario_with_demo_relays":14.263,"P\\Tests\\Api\\SelfserveZZZShellyGuardApiTest::__pest_evaluable_it_did_not_record_any_real_Shelly_request_attempts_during_self_serve_API_tests":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_serializes_questions__conditions__tasks__scopes__and_gateways_into_one_graph":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_derives_studio_vehicle_type_lookup_rows_from_selectable_wash_products":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_applies_saved_layout_without_changing_graph_semantics":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_keeps_layout_loading_compatible_with_native_PDO_named_placeholders":0.004,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_builds_guided_simulator_debug_payload_with_blockers_and_canvas_annotations":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_resolves_simulator_gateway_service_bindings_from_lane_relay_slots":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_persists_allowed_services_without_relay_writes_for_pre_start_wash_setup":0,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_wires_the_all_in_one_self_serve_studio_replacement_endpoints":0.008,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStartEntranceTimeoutTest::__pest_evaluable_it_continues_start_when_entrance_relay_dispatch_times_out_ambiguously":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStartEntranceTimeoutTest::__pest_evaluable_it_still_fails_start_for_non_timeout_entrance_relay_errors":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStartEntranceTimeoutTest::__pest_evaluable_it_parses_deferred_relay_side_effects_on_start_command_arguments":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStartEntranceTimeoutTest::__pest_evaluable_it_skips_cleaner_and_machine_relay_side_effects_when_start_asks_to_defer_them":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStartEntranceTimeoutTest::__pest_evaluable_it_keeps_cleaner_and_machine_relay_side_effects_for_normal_start_commands":0,"P\\Tests\\Unit\\Selfserve\\SelfservePropertyGatePermissionBypassTest::__pest_evaluable_it_allows_property_gate_commands_for_customers_with_an_active_wash_in_the_target_department":0,"P\\Tests\\Unit\\Selfserve\\SelfservePropertyGatePermissionBypassTest::__pest_evaluable_it_does_not_bypass_property_gate_permissions_without_a_positive_customer_number":0,"P\\Tests\\Unit\\Selfserve\\SelfservePropertyGatePermissionBypassTest::__pest_evaluable_it_does_not_bypass_property_gate_permissions_when_the_customer_has_no_active_wash_in_the_target_department":0,"P\\Tests\\Unit\\Selfserve\\SelfserveOpenApiSpecTest::__pest_evaluable_it_documents_the_all_in_one_self_serve_studio_replacement_API":0.009,"P\\Tests\\Unit\\Selfserve\\SelfserveNonOwnedVehicleWashAccessTest::__pest_evaluable_it_allows_own_permission_customers_to_preview_borrowed_registration_plates_without_ownership_checks":0.007,"P\\Tests\\Unit\\Selfserve\\SelfserveNonOwnedVehicleWashAccessTest::__pest_evaluable_it_allows_customer_scoped_answers_to_be_stored_for_borrowed_registration_plates":0.005,"P\\Tests\\Unit\\Selfserve\\SelfserveNonOwnedVehicleWashAccessTest::__pest_evaluable_it_does_not_apply_saved_answers_from_another_customer_for_the_same_registration_plate":0.027,"P\\Tests\\Unit\\Selfserve\\SelfserveNonOwnedVehicleWashAccessTest::__pest_evaluable_it_scopes_saved_self_serve_answers_by_customer_number_and_registration_plate":0.008,"P\\Tests\\Unit\\Selfserve\\SelfserveNonOwnedVehicleWashAccessTest::__pest_evaluable_it_loads_saved_answers_from_the_authenticated_customer_context_instead_of_the_plate_owner":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_does_not_count_shifts_without_punches_when_checkIn_checkOut_are_null":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_counts_overtime_minutes_when_a_saved_shift_end_extends_past_the_approved_original_end":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_does_not_count_removed_approved_time_when_a_saved_shift_end_is_shortened":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_caps_current_slot_hours_to_elapsed_minutes_and_zeroes_future_slots":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_counts_checked_in_shifts_without_checkOut_up_to_occurredUntil":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodRouteGuardsTest::__pest_evaluable_it_keeps_the_main_period_response_local_only_for_booked_state_and_customer_names":0.004,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodRouteGuardsTest::__pest_evaluable_it_streams_the_main_period_response_instead_of_encoding_the_full_payload_at_once":0.004,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodRouteGuardsTest::__pest_evaluable_it_maps_batched_period_transaction_rows_to_the_legacy_transaction_response_shape":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodRouteGuardsTest::__pest_evaluable_it_uses_batched_period_transactions_and_keyed_customer_maps_in_the_main_period_route":0.005,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodRouteGuardsTest::__pest_evaluable_it_falls_back_to_configured_e_conomic_default_department_for_missing_customer_default_department_in_distributions":0.004,"P\\Tests\\Api\\EconomicDraftCustomerApiTest::__pest_evaluable_it_round_trips_the_default_distribution_department_config_value_through_economic_config_updates":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_computes_MySQL_GTID_interval_counts_and_coverage_percentages":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_reports_empty_source_GTID_sets_as_caught_up":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_computes_Redis_offset_percentages_safely":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_computes_MariaDB_GTID_coverage_by_domain_sequence":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_normalizes_public_replication_kind_aliases":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_supports_MariaDB_prerequisites_without_requiring_Oracle_MySQL_variables":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_reports_MariaDB_specific_blockers_when_GTID_or_binary_logging_prerequisites_are_missing":0,"P\\Tests\\Unit\\Replication\\ReplicationSecretBoxTest::__pest_evaluable_it_encrypts_replication_secrets_without_storing_plaintext":0.001,"P\\Tests\\Unit\\Replication\\ReplicationSecretBoxTest::__pest_evaluable_it_builds_active_database_and_redis_config_from_encrypted_bootstrap_snapshots":0,"P\\Tests\\Unit\\Replication\\SuperuserReplicationRouteWiringTest::__pest_evaluable_it_registers_superuser_replication_endpoints_and_permissions":0.003,"P\\Tests\\Unit\\Replication\\SuperuserReplicationRouteWiringTest::__pest_evaluable_it_documents_replication_management_in_openapi":0.005,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_generates_replication_ready_MariaDB_compose_templates_without_embedding_secrets":0.001,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_generates_Redis_replica_compose_templates_with_primary_connection_placeholders":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_does_not_require_replica_SQL_threads_before_database_provisioning_configures_them":0.004,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_creates_the_generated_replication_user_on_the_primary_during_provisioning":0.005,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_detects_missing_database_tables_before_provisioning_a_preseeded_replica":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_allows_failed_replicas_to_be_removed_without_allowing_primary_or_healthy_replica_removal":0.004,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_seeds_MariaDB_replicas_in_place_instead_of_requiring_container_recreation":0.003,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_keeps_replication_operation_progress_schema_idempotent_for_existing_installs":0.004,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_limits_MariaDB_log_table_seeding_to_the_last_month":0.002,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_skips_log_table_data_during_MariaDB_seeding_and_replication":0.003,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_keeps_operational_log_tables_schema_only_during_MariaDB_seeding_and_replication":0.005,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_provisions_Redis_replicas_after_a_connectivity_only_preflight_and_reports_sync_progress":0.004,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_keeps_Redis_promotion_caught_up__durable__and_metadata_safe":0.005,"P\\Tests\\Unit\\Auth\\CreateTokenTest::__pest_evaluable_it_creates_auth_tokens_and_reports_missing_customer_users_clearly":0.238,"P\\Tests\\Unit\\Auth\\EconomicCreateCustomerResponseTest::__pest_evaluable_it_returns_the_raw_upstream_create_response_and_preserves_the_requested_payload":0,"P\\Tests\\Unit\\Auth\\RegisterCvrLegacyScriptTest::__pest_evaluable_it_keeps_the_legacy_register_cvr_route_harness_passing":0.033,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_returns_a_raw_202_gather_response_for_initial_department_selection":0.01,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_accepts_legacy_initial_webhook_payloads_with_top_level_call_identifiers":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_returns_a_flow_data_gather_payload_after_department_selection_in_native_flow_mode_when_distinct_gate_choices_exist":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_opens_the_gate_immediately_after_department_selection_when_entrance_and_exit_resolve_to_the_same_gate_in_native_flow_mode":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_returns_a_flow_data_completion_payload_after_gate_confirmation_in_native_flow_mode":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_returns_a_second_stage_raw_202_gather_response_after_department_selection_when_distinct_gate_choices_exist":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_opens_the_shared_gate_immediately_after_department_selection_in_raw_command_mode":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_opens_the_selected_gate_and_clears_redis_state_on_final_selection":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_reprompts_with_invalid_selection_while_keeping_webhook_state":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_uses_fallback_dtmf_extraction_when_event_gather_keys_are_missing":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_prompts_for_department_selection_even_when_only_one_eligible_department_exists":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_prompts_for_a_single_available_gate_type_and_opens_only_after_explicit_confirmation":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_supports_multi_digit_department_selections_before_gate_confirmation":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_returns_a_direct_raw_200_completion_when_no_departments_are_eligible":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_continues_with_the_first_gather_prompt_when_backend_call_acceptance_fails":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_returns_a_business_failure_raw_200_response_when_gate_opening_fails":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteIvrTest::__pest_evaluable_it_builds_deterministic_department_digit_map_without_capping_options":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteIvrTest::__pest_evaluable_it_builds_compact_gate_option_maps_and_resolves_selected_gate_type_by_digit":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteIvrTest::__pest_evaluable_it_builds_department_prompts_with_multi_digit_guidance_and_compact_gate_prompts":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteIvrTest::__pest_evaluable_it_normalizes_menu_digit_input_from_Bird_dtmf_payload_values":0,"P\\Tests\\Unit\\Bird\\DepartmentGatesPhoneCallOpenTest::__pest_evaluable_it_forwards_phone_number_and_call_duration_threshold_to_the_Bird_gate_helper":0,"P\\Tests\\Unit\\Bird\\DepartmentGatesPhoneCallOpenTest::__pest_evaluable_it_wraps_Bird_helper_failures_and_reports_them_to_Slack":0,"P\\Tests\\Unit\\Bookings\\NonPosBookingCompletionRemovalTest::__pest_evaluable_it_unregisters_legacy_booking_completion_forms":0.008,"P\\Tests\\Unit\\Bookings\\NonPosBookingCompletionRemovalTest::__pest_evaluable_it_keeps_legacy_wash_certificate_downloads_but_disables_generation_and_completion":0.015,"P\\Tests\\Unit\\DailyReports\\DepartmentDailyReportsComplaintsOpenApiSpecTest::__pest_evaluable_it_documents_the_daily_report_complaints_CRUD_and_customer_lookup_endpoints_in_openapi":0.009,"P\\Tests\\Unit\\DailyReports\\DepartmentDailyReportsComplaintsRouteContractTest::__pest_evaluable_it_wires_complaint_create__lookup__list__edit__and_delete_routes_with_validation_and_parsing":0.007,"P\\Tests\\Unit\\DailyReports\\DepartmentDailyReportsOutsideHoursOpenApiSpecTest::__pest_evaluable_it_documents_outside_hours_summary_and_trend_schemas_in_openapi":0.01,"P\\Tests\\Unit\\DailyReports\\DepartmentDailyReportsOutsideHoursRouteContractTest::__pest_evaluable_it_wires_outside_hours_summary_and_trend_endpoints_through_the_dedicated_statistics_service":0.005,"P\\Tests\\Unit\\DailyReports\\DepartmentDailyReportsOutsideHoursRouteContractTest::__pest_evaluable_it_initializes_the_outside_hours_statistics_service_before_building_the_transaction_count_summary_payload":0.003,"P\\Tests\\Unit\\DailyReports\\DepartmentDailyReportsOverviewOpenApiSpecTest::__pest_evaluable_it_documents_the_daily_report_overview_endpoint_and_reusable_schemas_in_openapi":0.008,"P\\Tests\\Unit\\DailyReports\\DepartmentDailyReportsOverviewRouteTest::__pest_evaluable_it_builds_the_overview_payload_from_batched_repository_data_with_deterministic_tile_states":0.005,"P\\Tests\\Unit\\DailyReports\\DepartmentDailyReportsOverviewRouteTest::__pest_evaluable_it_marks_overtime_unavailable_when_not_every_selected_department_can_be_mapped_to_workfeed":0,"P\\Tests\\Unit\\DailyReports\\DepartmentDailyReportsOverviewRouteTest::__pest_evaluable_it_normalizes_department_id_input_from_csv_strings_and_nested_values":0,"P\\Tests\\Unit\\DailyReports\\DepartmentDailyReportsOverviewRouteTest::__pest_evaluable_it_limits_overtime_counting_to_the_selected_reporting_range":0,"P\\Tests\\Unit\\DailyReports\\DepartmentDailyReportsOverviewRouteTest::__pest_evaluable_it_does_not_count_negative_approved_overtime_when_a_saved_end_shortens_the_shift":0,"P\\Tests\\Unit\\DailyReports\\DepartmentDailyReportsOverviewRouteTest::__pest_evaluable_it_ignores_late_unapproved_administrative_edits_when_calculating_overtime":0,"P\\Tests\\Unit\\DailyReports\\DepartmentDailyReportsOverviewRouteTest::__pest_evaluable_it_wires_the_overview_route_to_batched_repository_methods_and_overview_path":0.006,"P\\Tests\\Unit\\DailyReports\\DepartmentOutsideHoursStatisticsServiceTest::__pest_evaluable_it_counts_only_outside_hours_washes_and_flags_missing_opening_hours_without_counting_them_as_closed":0,"P\\Tests\\Unit\\DailyReports\\DepartmentOutsideHoursStatisticsServiceTest::__pest_evaluable_it_deduplicates_linked_washes_with_self_serve_first__then_xlvask__then_orders":0,"P\\Tests\\Unit\\DailyReports\\DepartmentOutsideHoursStatisticsServiceTest::__pest_evaluable_it_builds_daily_trend_points_with_per_day_missing_hours_diagnostics":0,"P\\Tests\\Unit\\Database\\DbObjectRedisNamespaceSafetyTest::__pest_evaluable_it_keeps_db_object_Redis_access_namespace_safe":0.005,"P\\Tests\\Unit\\DynamicImages\\DepartmentLaneDynamicImageRouteTest::__pest_evaluable_it_allows_studio_lane_dynamic_image_previews_to_override_the_saved_image_id":0.004,"P\\Tests\\Unit\\DynamicImages\\DepartmentLaneDynamicImageRouteTest::__pest_evaluable_it_accepts_ordered_dynamic_image_button_tokens_including_reset_start_and_zero":0.003,"P\\Tests\\Unit\\DynamicImages\\DepartmentLaneDynamicImageRouteTest::__pest_evaluable_it_renders_machine_one_dynamic_image_steps_from_the_ordered_button_payload":0.006,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueDetailsSummaryBuilderTest::__pest_evaluable_it_uses_queued_job_payload_customer_context_before_result_data_exists":0,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueRouteHardeningTest::__pest_evaluable_it_exposes_collected_invoice_queue_monitor_and_per_user_terminal_clear_routes":0.004,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueRouteHardeningTest::__pest_evaluable_it_runs_collected_invoice_queue_batches_through_an_explicit_manual_endpoint":0.006,"P\\Tests\\Unit\\Invoicing\\EconomicAuthTokenFallbackTest::__pest_evaluable_it_bounds_e_conomic_curl_calls_below_the_PHP_request_timeout":0.012,"P\\Tests\\Unit\\Invoicing\\EconomicCustomersDiscountFallbackTest::__pest_evaluable_it_falls_back_to_a_later_customer_template_product_when_earlier_probes_fail_on_missing_currency_prices":0,"P\\Tests\\Unit\\Invoicing\\EconomicCustomersDiscountFallbackTest::__pest_evaluable_it_returns_zero_when_every_customer_template_lookup_fails_due_to_missing_currency_prices":0,"P\\Tests\\Unit\\Invoicing\\EconomicCustomersDiscountFallbackTest::__pest_evaluable_it_rethrows_unrelated_discount_lookup_failures":0,"P\\Tests\\Unit\\Invoicing\\EconomicDraftCustomerOpenApiSpecTest::__pest_evaluable_it_documents_transaction_draft_customer_config_and_auth_runtime_fields_in_all_tracked_openapi_copies":0.311,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueCronEntrypointWiringTest::__pest_evaluable_it_wires_root_cron_entrypoint_to_the_full_cron_scheduler_with_queue_worker_tasks":0.005,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueOpenApiSpecTest::__pest_evaluable_it_documents_additive_collected_invoice_queue_pagination_metadata_and_retry_conflict_semantics":0.009,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueWorkerTickRouteTest::__pest_evaluable_it_exposes_an_explicit_collected_invoice_transfer_queue_run_route_instead_of_ticking_read_endpoints":0.006,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueWorkerTickRouteTest::__pest_evaluable_it_keeps_order_transfer_queue_status_routes_read_only":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicV2BookedDepartment75DistributionTest::__pest_evaluable_it_assigns_classified_booked_department_75_amounts_to_fallback_when_no_monthly_basis_exists":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2DistributionServiceFallbackTest::__pest_evaluable_it_falls_back_to_system_orders_for_fixed_pricing_using_the_configured_fallback_department":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2DistributionServiceFallbackTest::__pest_evaluable_it_falls_back_to_system_orders_for_wash_subscriptions_using_the_configured_fallback_department":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2DistributionServiceFallbackTest::__pest_evaluable_it_uses_the_configured_fallback_department_when_a_subscription_has_no_customer_department_basis":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2DistributionServiceFallbackTest::__pest_evaluable_it_excludes_orphaned_customer_traces_from_fixed_pricing_and_customer_price_distributions":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2DistributionServiceFallbackTest::__pest_evaluable_it_excludes_orphaned_customers_from_subscription_fallback_versions":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2DistributionServiceOrderOverrideTest::__pest_evaluable_it_inherits_department_eligibility_when_no_order_override_is_set":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2DistributionServiceOrderOverrideTest::__pest_evaluable_it_allows_an_order_level_include_override_to_overrule_department_exclusion":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2DistributionServiceOrderOverrideTest::__pest_evaluable_it_allows_an_order_level_exclude_override_to_overrule_department_inclusion":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_builds_deterministic_automatic_flag_fingerprints_and_interactive_price_message_parts":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_builds_interactive_message_parts_for_order_and_wash_certificate_warnings":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_includes_order_item_preview_context_for_required_order_field_warnings":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_allows_tank_cleaning_products_for_only_tank_cleaning_customers":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_does_not_flag_interior_wash_variants_as_historical_primary_product_mismatches":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_does_not_report_duplicate_primary_vehicle_products_from_duplicated_detector_rows_for_the_same_order_item":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_uses_attached_wash_certificate_documents_instead_of_safety_seal_text_for_certificate_presence":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_loads_wash_certificate_attachment_presence_from_order_attachment_content":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_uses_the_highest_customer_specific_discount_in_expected_price_breakdowns":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_uses_a_preloaded_e_conomic_global_discount_in_expected_price_breakdowns":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_does_not_report_a_price_mismatch_when_a_product_specific_discount_makes_the_expected_price_zero":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_preloads_and_caches_missing_e_conomic_discounts_before_price_mismatch_detection":0.004,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_seeds_order_item_preview_cache_from_period_rows":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_sorts_manual_flags_before_automatic_warnings_and_preserves_legacy_circle_indicators_without_flags":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_scopes_invoice_period_flags_to_the_customer_card_that_can_render_them":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_keeps_order_item_preview_context_compact_for_the_period_response":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_formats_stored_manual_flags_with_the_creating_superuser_display_name":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_validates_supported_manual_flag_fields_by_target_type":0.019,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_wires_invoice_period_flag_routes_with_explicit_list_create_and_update_permissions":0.004,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_uses_the_users_display__name_column_in_detector_queries":0.003,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_aggregates_customer_price_overrides_by_customer_number_for_price_mismatch_detection":0.004,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_guards_optional_customer_vehicle_deleted__at_filtering_behind_a_column_check":0.004,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_limits_historical_primary_product_lookup_to_current_period_registrations":0.004,"P\\Tests\\Unit\\Invoicing\\InvoicingOrdersCalculationsHardeningTest::__pest_evaluable_it_provides_a_batched_plain_row_transaction_query_for_invoicing_period_responses":0.004,"P\\Tests\\Unit\\Invoicing\\InvoicingOrdersCalculationsHardeningTest::__pest_evaluable_it_adds_guarded_composite_indexes_for_invoicing_period_lookups":0.004,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodDraftOverlayTest::__pest_evaluable_it_blocks_invoicing_when_all_actionable_transactions_are_backed_by_valid_e_conomic_drafts":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodDraftOverlayTest::__pest_evaluable_it_keeps_invoicing_available_when_valid_drafts_only_cover_part_of_the_actionable_work":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodDraftOverlayTest::__pest_evaluable_it_excludes_errored__booked__deleted__and_missing_external_id_invoice_collections_at_query_time":0.005,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodDraftOverlayTest::__pest_evaluable_it_still_checks_valid_drafts_when_the_collection_table_has_no_deleted_marker_column":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodDraftOverlayTest::__pest_evaluable_it_blocks_fixed_pricing_and_subscription_customer_level_work_when_a_relevant_valid_draft_exists":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodDraftOverlayTest::__pest_evaluable_it_keeps_queue_blocking_ahead_of_the_draft_label_when_all_work_is_covered_by_queue_or_draft_state":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodPaginationTest::__pest_evaluable_it_detects_paginated_period_mode_only_when_pagination_parameters_are_present":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodPaginationTest::__pest_evaluable_it_normalizes_period_pagination_options_and_clamps_invalid_page_and_limit_values":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodPaginationTest::__pest_evaluable_it_slices_only_the_active_period_view_and_keeps_exact_full_result_type_counts":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodPaginationTest::__pest_evaluable_it_returns_the_entire_active_period_view_when_the_limit_is_all":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodPaginationTest::__pest_evaluable_it_searches_customer_fields_and_order_fields_at_the_customer_card_level":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodPaginationTest::__pest_evaluable_it_applies_requires_action_and_booked_visibility_filters_before_counting_and_slicing":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodQueueOverlayTest::__pest_evaluable_it_normalizes_targeted_customer_number_filters_from_comma_separated_or_repeated_values":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodQueueOverlayTest::__pest_evaluable_it_filters_period_customer_number_candidates_to_targeted_customers_only":0,"P\\Tests\\Unit\\MotorApi\\MotorApiCachedResultTest::__pest_evaluable_it_only_writes_cached_MotorAPI_metadata_when_a_response_object_exists":0,"P\\Tests\\Unit\\Orders\\OrderBookingsCompletionDedupTest::__pest_evaluable_it_attaches_and_emails_a_wash_certificate_when_a_booking_is_already_linked_to_a_pos_order_without_one":0,"P\\Tests\\Unit\\Orders\\OrderBookingsCompletionDedupTest::__pest_evaluable_it_does_not_create_or_email_a_duplicate_wash_certificate_when_a_linked_pos_order_already_has_one":0,"P\\Tests\\Unit\\Orders\\OrderBookingsCompletionDedupTest::__pest_evaluable_it_keeps_standalone_booking_completion_behavior_unchanged_for_wash_certificates":0,"P\\Tests\\Unit\\Orders\\OrdersAutoWashCertificateCompletionTest::__pest_evaluable_it_auto_attaches_a_wash_certificate_on_order_completion_when_a_wash_certificate_item_is_present":0,"P\\Tests\\Unit\\Orders\\OrdersAutoWashCertificateCompletionTest::__pest_evaluable_it_keeps_order_completion_idempotent_when_a_wash_certificate_is_already_attached":0,"P\\Tests\\Unit\\Orders\\OrdersAutoWashCertificateCompletionTest::__pest_evaluable_it_allows_blank_safety_seal_values_when_auto_attaching_a_wash_certificate_on_completion":0,"P\\Tests\\Unit\\Orders\\OrdersIncludeInInvoiceOverrideTest::__pest_evaluable_it_lets_the_order_level_override_include_an_otherwise_excluded_order":0,"P\\Tests\\Unit\\Orders\\OrdersIncludeInInvoiceOverrideTest::__pest_evaluable_it_lets_the_order_level_override_exclude_an_otherwise_included_order":0,"P\\Tests\\Unit\\Orders\\OrdersIncludeInInvoiceOverrideTest::__pest_evaluable_it_falls_back_to_the_department_invoicing_rule_when_the_override_is_null":0,"P\\Tests\\Unit\\Orders\\OrdersIncludeInInvoiceOverrideTest::__pest_evaluable_it_serializes_both_raw_and_effective_include__in__invoice_values":0,"P\\Tests\\Unit\\Orders\\OrdersInputNormalizerTest::__pest_evaluable_it_normalizes_sql_and_datetime_local_created__at_values":0,"P\\Tests\\Unit\\Orders\\OrdersInputNormalizerTest::__pest_evaluable_it_rejects_invalid_created__at_values":0.001,"P\\Tests\\Unit\\Orders\\OrdersInputNormalizerTest::__pest_evaluable_it_normalizes_include__in__invoice_tri_state_inputs":0,"P\\Tests\\Unit\\Orders\\OrdersInputNormalizerTest::__pest_evaluable_it_rejects_invalid_include__in__invoice_values":0,"P\\Tests\\Unit\\Orders\\OrdersRouteSettingsUpdateWiringTest::__pest_evaluable_it_wires_order_create_and_update_routes_through_the_settings_normalizers":0.004,"P\\Tests\\Unit\\Orders\\OrdersRouteSettingsUpdateWiringTest::__pest_evaluable_it_keeps_line_item_invoice_filtering_in_the_order_net_amount_calculation":0.003,"P\\Tests\\Unit\\Orders\\OrdersRouteStripePaymentIntentLifecycleWiringTest::__pest_evaluable_it_wires_mobile_stripe_payment_intent_routes_to_normalized_lifecycle_handling":0.003,"P\\Tests\\Unit\\Orders\\StripePaymentIntentsPersistenceWiringTest::__pest_evaluable_it_wires_stripe_payment_intent_persistence_to_prune_duplicates_and_clear_reader_state_safely":0.004,"P\\Tests\\Unit\\Redis\\RedisAtomicReservationTest::__pest_evaluable_it_does_not_send_empty_mget_commands_to_redis":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_generates_MinIO_replica_compose_templates_without_embedding_secrets":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_computes_MinIO_free_space_and_catch_up_math_safely":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_wires_MinIO_replication_through_routes_and_bootstrap_snapshots":0.038,"P\\Tests\\Unit\\Selfserve\\SelfserveConditionEvaluatorTest::__pest_evaluable_it_evaluates_nested_v2_ALL_and_ANY_expression_trees_with_trace_output":0,"P\\Tests\\Unit\\Selfserve\\SelfserveConditionEvaluatorTest::__pest_evaluable_it_evaluates_v2_if__else_if__and_else_condition_branches_in_order":0,"P\\Tests\\Unit\\Selfserve\\SelfserveConditionEvaluatorTest::__pest_evaluable_it_evaluates_v2_case_expressions_against_question_values":0,"P\\Tests\\Unit\\Selfserve\\SelfserveConditionEvaluatorTest::__pest_evaluable_it_returns_false_and_traces_v2_condition_expression_cycles":0,"P\\Tests\\Unit\\Selfserve\\SelfserveConfigVersioningTest::__pest_evaluable_it_fails_validation_when_nested_conditions_form_cycles":0,"P\\Tests\\Unit\\Selfserve\\SelfserveConfigVersioningTest::__pest_evaluable_it_migrates_legacy_AND_and_OR_rules_into_grouped_v2_condition_expressions":0,"P\\Tests\\Unit\\Selfserve\\SelfserveConfigVersioningTest::__pest_evaluable_it_repairs_legacy_defaulted_always_task_gates_during_v2_normalization":0,"P\\Tests\\Unit\\Selfserve\\SelfserveConfigVersioningTest::__pest_evaluable_it_does_not_let_legacy_defaulted_always_task_gates_bypass_validation":0,"P\\Tests\\Unit\\Selfserve\\SelfserveConfigVersioningTest::__pest_evaluable_it_rejects_unsupported_legacy_task_target_rules_after_migration":0,"P\\Tests\\Unit\\Selfserve\\SelfserveConfigVersioningTest::__pest_evaluable_it_validates_v2_expressions_for_empty_used_conditions__missing_refs__invalid_operators__and_cycles":0,"P\\Tests\\Unit\\Selfserve\\SelfserveConfigVersioningTest::__pest_evaluable_it_validates_nested_v2_branch_and_case_expressions":0,"P\\Tests\\Unit\\Selfserve\\SelfserveInProgressWashAccessTest::__pest_evaluable_it_keeps_own_in_progress_self_serve_wash_details_visible_to_the_customer":0,"P\\Tests\\Unit\\Selfserve\\SelfserveInProgressWashAccessTest::__pest_evaluable_it_redacts_another_customers_in_progress_wash_details_during_customer_lane_polling":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_adds_vehicle_type_product_on_STOP_when_the_physical_machine_ON_signal_was_recorded__then_turns_off_cleaner_and_machine_relays":0.328,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_skips_vehicle_type_product_add_when_no_physical_machine_ON_signal_was_recorded_and_only_disables_configured_relays":0.021,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_does_not_use_selector_relay_online_status_as_machine_wash_billing_evidence":0.02,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_continues_STOP_when_exit_relay_dispatch_times_out_ambiguously":0.019,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_still_fails_STOP_for_non_timeout_exit_relay_errors":0.02,"P\\Tests\\Unit\\Selfserve\\SelfserveMachineSignalTest::__pest_evaluable_it_normalizes_Shelly_input_toggle_ON_events_as_machine_start_signals":0,"P\\Tests\\Unit\\Selfserve\\SelfserveMachineSignalTest::__pest_evaluable_it_normalizes_Shelly_switch_ON_events_and_nested_status_payloads":0,"P\\Tests\\Unit\\Selfserve\\SelfserveMachineSignalTest::__pest_evaluable_it_recognizes_Shelly_OFF_events_but_does_not_treat_them_as_billable_machine_starts":0,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_wires_local_edge_gateway_machine_ON_signal_monitor_endpoints":0.017,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_wires_lane_level_self_serve_toggles_through_lane_APIs__guest_payloads__and_edge_workspace_readiness":0.013,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_returns_authoritative_allowed_service_state_from_self_serve_session_summaries":0.004,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_filters_machine_button_tasks_out_of_self_serve_snapshots_when_MACHINE_is_not_allowed":0.004,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_blocks_new_self_serve_eligibility_and_session_sync_for_disabled_lanes":0.005,"P\\Tests\\Unit\\Selfserve\\SelfserveSchemaBootstrapCompatibilityTest::__pest_evaluable_it_adds_lane_level_self_serve_enablement_for_existing_department_lanes":0.004,"P\\Tests\\Unit\\Selfserve\\SelfserveSchemaBootstrapCompatibilityTest::__pest_evaluable_it_creates_canvas_only_self_serve_studio_layout_storage":0.004,"P\\Tests\\Unit\\Selfserve\\SelfserveSchemaBootstrapCompatibilityTest::__pest_evaluable_it_uses_mysql_safe_identifiers_for_self_serve_studio_virtual_hardware_storage":0.003,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_serializes_configurable_studio_actions_with_event__gate__scope__and_ordering_edges":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_validates_action_configuration_and_keeps_warnings_non_blocking":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_serializes_v2_condition_expressions_without_standalone_rule_nodes":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_serializes_branch_and_case_condition_expression_dependencies":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_keeps_runtime_on_published_v2_configs_and_leaves_draft_JSON_as_the_studio_edit_surface":0.012,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_surfaces_task_attachments_in_studio_graph__simulator__and_flow_responses":0.013,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_exposes_dynamic_images_and_referenced_machine_types_as_studio_lookup_choices":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_keeps_lane_management_fields_on_lane_scope_nodes":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_routes_studio_lane_graph_operations_through_department__lanes":0.002,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_projects_visible_question_answer_paths_into_grouped_task_service_and_signal_outcomes":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_truncates_path_outcome_projection_when_the_state_cap_is_reached":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_returns_complete_terminal_path_results_for_wide_question_trees_and_reports_progress":0.079,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_generates_and_merges_virtual_hardware_as_studio_only_relay_coverage":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_renders_virtual_gateway_nodes_and_task_service_edges_in_the_studio_graph":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_inserts_configured_action_signals_into_the_simulator_timeline_in_runtime_order":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_simulates_lane_scoped_wash_start_actions_for_property_gates_and_lane_entrance_ports":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_adds_ordered_simulator_signal_timeline_rows_for_virtual_hardware_dry_runs":0,"P\\Tests\\Unit\\Selfserve\\SelfserveWashFlowMachineAllowedWiringTest::__pest_evaluable_it_infers_legacy_defaulted_always_task_gates_from_condition__id_at_runtime":0,"P\\Tests\\Unit\\Selfserve\\SelfserveWashSessionStateTest::__pest_evaluable_it_treats_terminal_self_serve_wash_session_statuses_as_closed":0,"P\\Tests\\Unit\\Selfserve\\SelfserveWashSessionStateTest::__pest_evaluable_it_freezes_elapsed_self_serve_wash_minutes_at_completion_time":0,"P\\Tests\\Unit\\Subusers\\SubusersRouteManagementContractTest::__pest_evaluable_it_exposes_chauffeur_management_endpoints_on_the_subusers_route":0.009,"P\\Tests\\Unit\\Subusers\\SubusersRouteManagementContractTest::__pest_evaluable_it_includes_grant_management_fields_in_the_subusers_payload_builder":0.004,"P\\Tests\\Unit\\Subusers\\SubusersRouteManagementContractTest::__pest_evaluable_it_links_grant_disable_operations_to_SUBUSERS__DELETE_for_own_customer_managers":0.006,"P\\Tests\\Unit\\Subusers\\SubusersRouteManagementContractTest::__pest_evaluable_it_prevents_own_customer_managers_from_editing_driver_owned_account_profiles":0.005,"P\\Tests\\Unit\\Subusers\\SubusersRouteManagementContractTest::__pest_evaluable_it_only_allows_invite_resend_while_setup_is_still_pending":0.006,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusOpenApiSpecTest::__pest_evaluable_it_documents_the_superuser_system_status_snapshot_endpoint_in_openapi":0.009,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusOpenApiSpecTest::__pest_evaluable_it_defines_the_reusable_system_status_schemas_and_enums":0.008,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusRouteWiringTest::__pest_evaluable_it_registers_the_aggregated_superuser_system_status_endpoint_and_permission":0.017,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusRouteWiringTest::__pest_evaluable_it_keeps_the_legacy_database_status_endpoint_wired_through_the_shared_snapshot_service":0.006,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_reduces_overall_status_using_down_and_degraded_precedence":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_classifies_runtime_usage_percentages_consistently":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_reuses_cached_module_probes_only_when_the_ttl_is_still_valid_and_force_is_false":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_classifies_authenticated_http_probe_responses_conservatively with data set \"dataset \"success\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_classifies_authenticated_http_probe_responses_conservatively with data set \"dataset \"unauthorized\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_classifies_authenticated_http_probe_responses_conservatively with data set \"dataset \"forbidden\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_classifies_authenticated_http_probe_responses_conservatively with data set \"dataset \"rate limited\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_classifies_authenticated_http_probe_responses_conservatively with data set \"dataset \"server error\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_classifies_authenticated_http_probe_responses_conservatively with data set \"dataset \"no response\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_classifies_transport_errors_as_down":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_normalizes_and_deduplicates_warning_entries_for_snapshots":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_interprets_recaptcha_probe_payloads_safely with data set \"dataset \"dummy token rejected but credentials valid\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_interprets_recaptcha_probe_payloads_safely with data set \"dataset \"invalid secret is down\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_interprets_recaptcha_probe_payloads_safely with data set \"dataset \"unexpected validation errors degrade\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_builds_the_expected_http_probe_requests_for_newly_supported_modules with data set \"dataset \"recaptcha\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_builds_the_expected_http_probe_requests_for_newly_supported_modules with data set \"dataset \"email\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_builds_the_expected_http_probe_requests_for_newly_supported_modules with data set \"dataset \"motorapi\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_builds_the_expected_http_probe_requests_for_newly_supported_modules with data set \"dataset \"fxratesapi\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_builds_the_expected_http_probe_requests_for_newly_supported_modules with data set \"dataset \"weatherapi\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_builds_the_expected_http_probe_requests_for_newly_supported_modules with data set \"dataset \"workfeed\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_builds_the_expected_http_probe_requests_for_newly_supported_modules with data set \"dataset \"gatewayapi\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_builds_the_expected_http_probe_requests_for_newly_supported_modules with data set \"dataset \"xlvask\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_builds_the_expected_http_probe_requests_for_newly_supported_modules with data set \"dataset \"limble\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_builds_the_expected_http_probe_requests_for_newly_supported_modules with data set \"dataset \"license plate recognizer\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_builds_the_expected_http_probe_requests_for_newly_supported_modules with data set \"dataset \"bird\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_uses_runtime_economic_credentials_for_the_economic_probe":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_returns_down_without_attempting_economic_http_calls_when_runtime_credentials_are_missing":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_reports_backup_probe_failures_from_local_validation":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_returns_configured_for_shelly_when_no_known_device_id_is_available_for_probing":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_builds_an_authenticated_shelly_status_probe_when_a_known_device_id_exists":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_validates_selfserve_schema_and_minute_product_configuration":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_reports_invalid_selfserve_minute_configuration_before_touching_the_schema":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_reports_missing_selfserve_minute_products":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_surfaces_selfserve_bootstrap_failures":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_adds_localization_metadata_for_disabled_and_missing_config_modules":10.04,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_marks_newly_supported_modules_as_probe_backed_and_leaves_only_truly_unsupported_modules_as_configuration_only":9.004,"P\\Tests\\Unit\\SystemStatus\\SystemSessionActivityTrackerTest::__pest_evaluable_it_detects_device_types_from_common_user_agents":0,"P\\Tests\\Unit\\SystemStatus\\SystemSessionActivityTrackerTest::__pest_evaluable_it_treats_recent_sessions_as_active_within_the_configured_activity_window":0,"P\\Tests\\Unit\\SystemStatus\\SystemSessionActivityTrackerTest::__pest_evaluable_it_converts_database_utc_datetimes_into_timezone_aware_iso_strings":0,"P\\Tests\\Unit\\SystemStatus\\SystemSessionActivityTrackerTest::__pest_evaluable_it_treats_timezone_aware_iso_timestamps_as_active_using_absolute_time":0,"P\\Tests\\Unit\\Tooling\\LegacyTestInventoryTest::__pest_evaluable_it_keeps_every_legacy_PHP_test_accounted_for_in_the_manifest":0.405,"P\\Tests\\Unit\\Tooling\\MySqlSchemaCompatibilityTest::__pest_evaluable_it_keeps_schema_bootstrap_SQL_compatible_with_the_MySQL_runner":4.342,"P\\Tests\\Unit\\Users\\UsersCustomerNamesCacheTest::__pest_evaluable_it_allows_callers_to_resolve_customer_names_without_e_conomic_fallback":0.002,"P\\Tests\\Unit\\Users\\UsersCustomerNamesCacheTest::__pest_evaluable_it_returns_an_empty_customer_name_map_without_touching_cache_for_empty_input":0,"P\\Tests\\Unit\\Users\\UsersCustomerNamesCacheTest::__pest_evaluable_it_returns_no_rows_for_empty_array_field_filters":0,"P\\Tests\\Unit\\Users\\UsersRedisNamespaceSafetyTest::__pest_evaluable_it_keeps_users_Redis_access_namespace_safe":0.003,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherCacheRuntimeBehaviorTest::__pest_evaluable_it_builds_department_weather_preload_targets_in_cli_without_a_request_uri":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherPreloadCronWiringTest::__pest_evaluable_it_registers_and_implements_cron_warming_for_workfeed_employee_name_cache":0.008,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherStatusTargetsTest::__pest_evaluable_it_aggregates_multi_department_slot_statuses_using_worst_severity_when_any_department_is_unhealthy":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherStatusTargetsTest::__pest_evaluable_it_aggregates_all_unhealthy_multi_department_slot_statuses_as_unhealthy":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherStatusTargetsTest::__pest_evaluable_it_returns_unknown_when_aggregated_multi_department_slot_targets_are_missing":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherStatusTargetsTest::__pest_evaluable_it_returns_unknown_when_aggregated_multi_department_slot_has_no_evaluable_hours":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherStatusTargetsTest::__pest_evaluable_it_returns_unknown_when_aggregated_multi_department_slot_has_not_started_yet":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTargetsRouteWiringTest::__pest_evaluable_it_registers_department_weather_hour_details_route_with_weather_read_and_department_access_checks":0.004,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_calculates_weather_hour_contributions_grouped_per_employee_for_a_slot":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_calculates_weather_hour_contributions_for_canonical_nested_workfeed_employee_schema":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_extracts_weather_employee_identity_from_supported_shift_payload_shapes":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_prefers_canonical_workfeed_employee_schema_fields_over_generic_employee_names":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_does_not_use_workfeed_schema_name_fields_as_employee_ids":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_returns_a_null_employee_name_when_no_workfeed_employee_name_is_available":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_resolves_missing_workfeed_employee_names_from_the_employees_endpoint":0.042,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_filters_employee_hour_rows_that_cannot_be_resolved_to_a_workfeed_schema_name":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_resolves_employee_display_name_from_cache_when_shift_payload_lacks_a_name":0,"P\\Tests\\Unit\\Workfeed\\WorkfeedEmployeeNameFormatterTest::__pest_evaluable_it_formats_workfeed_employee_display_names_from_the_documented_firstname_lastname_schema":0,"P\\Tests\\Unit\\Workfeed\\WorkfeedEmployeeNameFormatterTest::__pest_evaluable_it_prefers_workfeed_schema_names_over_generic_display_name_fields":0,"P\\Tests\\Unit\\Workfeed\\WorkfeedEmployeeNameFormatterTest::__pest_evaluable_it_falls_back_to_legacy_display_name_fields_when_schema_names_are_absent":0,"P\\Tests\\Unit\\Workfeed\\WorkfeedEmployeeNameFormatterTest::__pest_evaluable_it_ignores_placeholder_workfeed_display_names":0,"P\\Tests\\Unit\\Workfeed\\WorkfeedEmployeeNameFormatterTest::__pest_evaluable_it_ignores_employee_id_placeholder_display_names_when_the_id_is_known":0,"P\\Tests\\Unit\\XLVask\\XLVaskAutomationServiceTest::__pest_evaluable_it_normalizes_registrations_for_XL_Vask_automation_signatures":0,"P\\Tests\\Unit\\XLVask\\XLVaskAutomationServiceTest::__pest_evaluable_it_builds_stable_XL_Vask_automation_item_signatures":0,"P\\Tests\\Unit\\XLVask\\XLVaskAutomationServiceTest::__pest_evaluable_it_normalizes_persisted_XL_Vask_usage_log_rows_before_helper_hydration":0,"P\\Tests\\Unit\\XLVask\\XLVaskAutomationServiceTest::__pest_evaluable_it_builds_stable_OpenAI_cache_keys_for_identical_automation_input":0,"P\\Tests\\Unit\\XLVask\\XLVaskAutomationServiceTest::__pest_evaluable_it_changes_OpenAI_cache_keys_when_automation_eligibility_input_changes":0,"P\\Tests\\Unit\\XLVask\\XLVaskAutomationServiceTest::__pest_evaluable_it_declares_a_persistent_OpenAI_cache_table_for_XL_Vask_automation":0.004,"P\\Tests\\Unit\\XLVask\\XLVaskAutomationServiceTest::__pest_evaluable_it_declares_cached_amount_summary_columns_for_XL_Vask_usage_logs":0.003,"P\\Tests\\Unit\\XLVask\\XLVaskAutomationServiceTest::__pest_evaluable_it_scores_same_day_orders_with_matching_XL_Vask_products_and_extra_add_ons_as_attach_suggestions":0,"P\\Tests\\Unit\\XLVask\\XLVaskAutomationServiceTest::__pest_evaluable_it_does_not_score_an_order_with_only_the_primary_product_as_a_matching_add_on_attachment":0,"P\\Tests\\Unit\\XLVask\\XLVaskUsageLogHelperTest::__pest_evaluable_it_accepts_persisted_ignore_metadata_from_xlvask_usage_log_rows":0.022,"P\\Tests\\Unit\\XLVask\\XLVaskUsageLogHelperTest::__pest_evaluable_it_calculates_XL_Vask_amount_summaries_without_hydrating_order_item_previews":0.006,"P\\Tests\\Unit\\XLVask\\XLVaskUsageRouteContractTest::__pest_evaluable_it_exposes_direct_linked_order_metadata_on_XL_Vask_usage_order_rows":0.004,"P\\Tests\\Unit\\XLVask\\XLVaskUsageRouteContractTest::__pest_evaluable_it_returns_cached_amount_summaries_on_XL_Vask_usage_order_rows_without_widening_the_usage_log_object_payload":0.004,"P\\Tests\\Integration\\DailyReports\\DepartmentDailyReportComplaintsIntegrationTest::__pest_evaluable_it_counts_complaint_rows_by_department_and_created__at_reporting_range":0.284,"P\\Tests\\Integration\\DailyReports\\DepartmentDailyReportComplaintsIntegrationTest::__pest_evaluable_it_updates_and_deletes_complaint_rows":0.005,"P\\Tests\\Integration\\DailyReports\\DepartmentDailyReportComplaintsIntegrationTest::__pest_evaluable_it_parses_created__by__name_from_the_users_table":0.005,"P\\Tests\\Integration\\DailyReports\\DepartmentOutsideHoursStatisticsServiceIntegrationTest::__pest_evaluable_it_integrates_orders__xlvask__and_self_serve_into_one_outside_hours_summary_with_missing_hours_diagnostics":0.016,"P\\Tests\\Integration\\Invoicing\\EconomicTransferQueueIntegrationTest::__pest_evaluable_it_processes_only_collected_invoice_jobs_and_respects_the_manual_batch_limit":0.014,"P\\Tests\\Integration\\SystemStatus\\SuperuserSystemStatusInfrastructureProbeTest::__pest_evaluable_it_can_probe_the_configured_database_in_integration_mode":0,"P\\Tests\\Integration\\SystemStatus\\SuperuserSystemStatusInfrastructureProbeTest::__pest_evaluable_it_can_probe_redis_in_integration_mode_when_configured":0,"P\\Tests\\Integration\\SystemStatus\\SuperuserSystemStatusInfrastructureProbeTest::__pest_evaluable_it_can_probe_minio_in_integration_mode_when_configured":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_redacts_sensitive_release_timeline_payload_fields_recursively":0.128,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_verifies_GitHub_sha256_webhook_signatures":0.013,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_normalizes_GitHub_repository_identifiers_for_private_repository_access_checks":0.001,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_defines_release_manager_schema__routes__permissions__and_system_status_integration_hooks":0.02,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_summarizes_failed_deployments_and_blocks_promotion_until_a_deployment_succeeds":0.006,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_uses_the_selected_Coolify_project_and_resolves_server_UUID_from_the_instance_default":0.05,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_supports_isolated_stack_mode_and_names_new_Coolify_services_explicitly":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_creates_Coolify_service_payloads_from_raw_compose_without_a_service_type":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_normalizes_Coolify_API_base_URLs_to_the_v1_API_root":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_parses_generated_env_files_for_Coolify_service_env_bulk_updates":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_prefers_public_Coolify_server_hosts_over_Docker_local_addresses":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_blocks_planned_downtime_operations_against_active_replication_primaries":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_allows_failed_Coolify_replica_targets_to_be_removed_after_the_service_disappears":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_retries_Coolify_maintenance_while_linked_replication_provisioning_is_still_incomplete":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_plans_Hetzner_load_balancer_target_and_service_drift_without_mutating_state":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_does_not_plan_removal_of_the_last_Hetzner_load_balancer_target":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_plans_removal_only_for_disabled_or_deleted_Hetzner_load_balancer_targets":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_defines_Coolify_schema__route_permissions__and_replication_integration_hooks":0.069,"P\\Tests\\Unit\\ErrorReports\\ErrorReportTest::__pest_evaluable_it_redacts_sensitive_error_report_payload_fields_recursively":0,"P\\Tests\\Unit\\ErrorReports\\ErrorReportTest::__pest_evaluable_it_validates_supported_screenshot_data_uris":0,"P\\Tests\\Unit\\ErrorReports\\ErrorReportTest::__pest_evaluable_it_defines_error_report_schema__routes__permissions__storage__and_OpenAPI_docs":0.021,"P\\Tests\\Unit\\Http\\ResponseRequestParametersTest::__pest_evaluable_it_reads_JSON_payloads_for_DELETE_request_parameter_arrays":0,"P\\Tests\\Unit\\Http\\ResponseRequestParametersTest::__pest_evaluable_it_keeps_DELETE_query_parameters_when_no_JSON_body_is_present":0,"P\\Tests\\Unit\\Infrastructure\\CorsReleaseHeadersTest::__pest_evaluable_it_allows_release_telemetry_headers_at_PHP_served_CORS_entry_points":0.012,"P\\Tests\\Unit\\Orders\\OrderBookingsCompletionDedupTest::__pest_evaluable_it_uses_the_linked_pos_order_wash_certificate_item_added_during_mobile_completion":0,"P\\Tests\\Unit\\Replication\\ReplicaFailoverManagerTest::__pest_evaluable_it_normalizes_failover_config_defaults_and_per_kind_enablement":0,"P\\Tests\\Unit\\Replication\\ReplicaFailoverManagerTest::__pest_evaluable_it_requires_strict_fresh_100_percent_replica_status_for_candidates":0,"P\\Tests\\Unit\\Replication\\ReplicaFailoverManagerTest::__pest_evaluable_it_selects_the_freshest_eligible_replica_for_failover":0,"P\\Tests\\Unit\\Replication\\ReplicaFailoverManagerTest::__pest_evaluable_it_promotes_enabled_startup_dependencies_from_snapshot_in_dependency_order":0.003,"P\\Tests\\Unit\\Replication\\ReplicaFailoverManagerTest::__pest_evaluable_it_does_not_promote_a_disabled_dependency_during_startup_failover":0.001,"P\\Tests\\Unit\\Replication\\ReplicaFailoverManagerTest::__pest_evaluable_it_wires_the_failover_module_config_endpoint_and_promotion_paths":0.023,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_can_embed_primary_admin_credentials_in_generated_MariaDB_replica_env_files":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_keeps_operational_and_derived_tables_schema_only_during_MariaDB_seeding_and_replication":0.003,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_supports_metadata_only_replication_host_renames":0.004,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_keeps_MinIO_backup_replicas_bounded_to_the_recent_backup_window":0.01,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_prefills_MinIO_replica_compose_primary_values_from_current_config_when_available":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_allows_the_MinIO_client_binary_to_be_configured_explicitly":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_supports_MinIO_client_runtime_fallback_configuration":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_extracts_host_specific_MariaDB_replication_account_denials":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_identifies_stopped_database_replication_threads_as_a_restartable_status":0,"P\\Tests\\Unit\\Scanner\\ModuleScannerRouteTest::__pest_evaluable_it_returns_no_plate_LPR_results_without_a_failed_HTTP_status":0.005,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_does_not_invent_GHCR_images_for_Coolify_service_payloads":0.014,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_keeps_release_branch_services_out_of_the_production_Coolify_environment_except_beta":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_creates_Coolify_GitHub_App_application_payloads_so_pulls_use_the_app_token":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_does_not_treat_an_existing_Coolify_service_as_an_application_just_because_a_GitHub_App_UUID_is_stored":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_can_use_the_Coolify_instance_default_GitHub_App_when_source_targets_do_not_store_it_yet":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_updates_existing_frontend_Coolify_applications_away_from_legacy_Nixpacks_detection":0,"P\\Tests\\Unit\\Auth\\EconomicCreateCustomerResponseTest::__pest_evaluable_it_adds_supported_CVR_company_fields_to_the_e_conomic_customer_payload":0.017,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_keeps_release_channel_runtime_availability_independent_from_channel_URLs":0.007,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_chooses_a_requested_runtime_channel_only_when_it_is_available_to_the_principal":0.199,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_normalizes_release_assignment_subject_suggestions_without_leaking_private_fields":0.009,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_keeps_GitHub_commit_timestamps_in_public_release_manager_commit_payloads":0.026,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_requires_non_default_release_channel_runtime_URLs_and_preserves_load_balancer_paths":0.006,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_exposes_release_version_git_commit_metadata_for_runtime_channel_cards":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_builds_gateway_API_auto_provision_context_for_connected_Coolify_servers":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_adds_explicit_Coolify_application_route_labels_for_gateway_API_domains":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_builds_explicit_Coolify_application_route_labels_for_release_API_targets":0.013,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_uses_the_self_contained_Coolify_API_Dockerfile_for_API_applications":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_isolates_and_restores_Hetzner_load_balancer_IP_targets_for_gateway_certificate_bootstrap":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_requires_gateway_ping_probes_to_return_the_API_ping_contract":0,"P\\Tests\\Unit\\Tooling\\ComposerEntrypointTest::__pest_evaluable_it_checks_PSR_HTTP_message_interfaces_before_trusting_a_Composer_vendor_tree":0,"P\\Tests\\Unit\\Release\\ReleaseManagerStatusOverviewTest::__pest_evaluable_it_marks_a_channel_ready_when_all_release_services_are_healthy":0,"P\\Tests\\Unit\\Release\\ReleaseManagerStatusOverviewTest::__pest_evaluable_it_reports_non_default_channels_missing_bundles__versions__and_URLs_as_blocking_missing_values":0,"P\\Tests\\Unit\\Release\\ReleaseManagerStatusOverviewTest::__pest_evaluable_it_surfaces_failed_latest_deployments_as_critical_promotion_blockers":0,"P\\Tests\\Unit\\Release\\ReleaseManagerStatusOverviewTest::__pest_evaluable_it_flags_isolated_stacks_that_are_missing_database_Redis_and_MinIO_services":0,"P\\Tests\\Unit\\Release\\ReleaseManagerStatusOverviewTest::__pest_evaluable_it_maps_degraded_Coolify_targets_and_reconcile_failures_to_release_service_issues":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_plans_Hetzner_load_balancer_service_health_check_drift_updates":0.015,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_returns_structured_errors_for_failed_gateway_certificate_bootstrap_and_verification":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_captures_release_request_context_from_headers_and_runtime_query_parameters":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_normalizes_channel_prefixed_API_ingress_paths_before_route_dispatch":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_creates_frontend_Coolify_GitHub_App_application_payloads_with_the_release_Dockerfile":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_builds_gateway_frontend_auto_provision_context_with_the_release_Dockerfile":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_allows_explicit_runtime_selection_of_any_enabled_release_channel":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_chooses_requested_runtime_channels_from_available_channels_or_enabled_channel_slugs":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_normalizes_gateway_probe_paths_for_release_gateway_health_checks":0}} \ No newline at end of file +{"version":"pest_3.8.6","defects":{"P\\Tests\\Unit\\Selfserve\\SelfserveOpenApiSpecTest::__pest_evaluable_it_documents_self_serve_machine_type__eligibility__summary__and_webhook_endpoints":1,"P\\Tests\\Unit\\Selfserve\\SelfserveOpenApiSpecTest::__pest_evaluable_it_defines_reusable_self_serve_wash_and_machine_type_schemas":1,"P\\Tests\\Unit\\Invoicing\\EconomicV2BookedDepartment75DistributionTest::__pest_evaluable_it_redistributes_booked_department_75_net_amounts_using_fixed_pricing_and_wash_subscription_weights":7,"P\\Tests\\Unit\\Invoicing\\EconomicV2BookedDepartment75DistributionTest::__pest_evaluable_it_keeps_classified_booked_department_75_amounts_undistributed_when_no_monthly_basis_exists":8,"P\\Tests\\Unit\\Invoicing\\EconomicV2BookedDepartment75DistributionTest::__pest_evaluable_it_keeps_unclassified_booked_department_75_lines_undistributed_with_warnings":8,"P\\Tests\\Unit\\Invoicing\\EconomicV2OpenApiSpecTest::__pest_evaluable_it_documents_v2_historical_distribution_and_pricing_history_paths_in_openapi":1,"P\\Tests\\Unit\\Invoicing\\EconomicV2OpenApiSpecTest::__pest_evaluable_it_defines_new_reusable_v2_schemas_for_normalization_comparison_versioning_and_distribution":1,"P\\Tests\\Unit\\Invoicing\\EconomicV2BookedDepartment75DistributionTest::__pest_evaluable_it_supports_bulk_booked_invoice_line_payloads_with_top_level_department_numbers":7,"P\\Tests\\Unit\\Redis\\RedisAtomicReservationTest::__pest_evaluable_it_claims_a_slot_atomically_with_nx_and_expiration":8,"P\\Tests\\Unit\\Redis\\RedisAtomicReservationTest::__pest_evaluable_it_returns_false_when_the_slot_is_already_claimed_and_clamps_ttl_to_one_second":8,"P\\Tests\\Unit\\Invoicing\\EconomicV2OpenApiSpecTest::__pest_evaluable_it_documents_economic_v2_invoice_paths_in_openapi":1,"P\\Tests\\Unit\\Invoicing\\EconomicV2OpenApiSpecTest::__pest_evaluable_it_aligns_legacy_compare_schema_with_runtime_payload_by_removing_stale_required_order__ids":1,"P\\Tests\\Unit\\Search\\SystemSearchEntityTypeCoverageTest::__pest_evaluable_it_documents_every_supported_search_entity_type_in_openapi_enum":1,"P\\Tests\\Unit\\Search\\SystemSearchOpenApiSpecTest::__pest_evaluable_it_documents_system_wide_search_endpoints_in_openapi":1,"P\\Tests\\Unit\\Search\\SystemSearchOpenApiSpecTest::__pest_evaluable_it_documents_debug__intent_and_parser_metadata_schema_in_openapi":1,"P\\Tests\\Unit\\Search\\SystemSearchOpenApiSpecTest::__pest_evaluable_it_documents_e_conomic_indexed_customer_matching_and_synonym_behavior":1,"P\\Tests\\Integration\\Database\\DbConnectionTest::__pest_evaluable_it_can_connect_to_a_configured_MySQL_instance_in_integration_mode":1,"P\\Tests\\Integration\\Invoicing\\EconomicV2BackfillAndDistributionIntegrationTest::__pest_evaluable_it_runs_best_effort_backfill_repeatedly_without_introducing_duplicate_same_start_rows":1,"P\\Tests\\Integration\\Invoicing\\EconomicV2BackfillAndDistributionIntegrationTest::__pest_evaluable_it_resolves_version_aware_distribution_payload_shapes_over_a_real_date_range":1,"P\\Tests\\Integration\\Invoicing\\EconomicV2VersioningServiceIntegrationTest::__pest_evaluable_it_creates_closes_and_rotates_fixed_pricing_versions_without_overlap":1,"P\\Tests\\Integration\\Invoicing\\EconomicV2VersioningServiceIntegrationTest::__pest_evaluable_it_tracks_vehicle_and_discount_version_lifecycles_with_closure_semantics":1,"P\\Tests\\Integration\\Permissions\\LegacyPermissionRedisCacheScriptTest::__pest_evaluable_it_keeps_legacy_route_permission_redis_cache_script_green":1,"P\\Tests\\Unit\\Goals\\GoalsOpenApiSpecTest::__pest_evaluable_it_documents_advanced_goals_target_duration_fields_in_openapi":1,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTimelineSchemaConformanceTest::__pest_evaluable_it_documents_the_date_key_in_the_openapi_department_weather_timeline_schema":1,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherFallbackBehaviorTest::__pest_evaluable_it_builds_timeline_entries_with_mostly__clear_weather_when_forecast_payload_is_empty":8,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherFallbackBehaviorTest::__pest_evaluable_it_wires_departments_weather_route_through_the_forecast_fallback_path":7,"P\\Tests\\Unit\\Orders\\AttachmentsListManyTest::__pest_evaluable_it_groups_attachments_by_object_id_and_preserves_empty_object_groups":8,"P\\Tests\\Unit\\Orders\\AttachmentsListManyTest::__pest_evaluable_it_keeps_listMany_payload_parity_with_list_for_one_object_id":8,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTargetsOpenApiSpecTest::__pest_evaluable_it_documents_department_weather_target_endpoints_and_reusable_schemas_in_openapi":1,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTargetsOpenApiSpecTest::__pest_evaluable_it_documents_unknown_weather_status_behavior_when_targets_are_missing":1,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_respects_the_1_request_per_second_Shelly_gate_for_back_to_back_requests":8,"P\\Tests\\Unit\\Selfserve\\SelfserveOpenApiSpecTest::__pest_evaluable_it_documents_in_progress_self_serve_wash_start_and_machine_relay_fields":1,"P\\Tests\\Unit\\Selfserve\\SelfserveConfigVersioningTest::__pest_evaluable_it_stores_config_json_with_apostrophes_without_violating_json_constraints":8,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_adds_vehicle_type_product_on_STOP_when_program_selector_is_on__then_turns_off_cleaner_machine_and_selector_relays":7,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_skips_vehicle_type_product_add_when_program_selector_is_off_and_only_disables_configured_relays":7,"P\\Tests\\Unit\\Selfserve\\SelfserveOpenApiSpecTest::__pest_evaluable_it_documents_self_serve_machine_wash_included_minutes_in_config_schemas":1,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_fails_fast_when_workspace_id_is_missing_for_gate_calls":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_fails_fast_when_channel_id_is_missing_for_gate_calls":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_fails_with_terminal_status_details_when_call_never_reaches_accepted_state":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_hangs_up_when_call_reaches_accepted_state":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_hangs_up_immediately_when_status_transitions_to_accepted":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_maps_legacy_timeout_option_to_documented_ringTimeout_payload_field":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_clamps_derived_ringTimeout_to_Bird_documented_max_when_gate_timeout_is_high":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_passes_documented_hangup_cause_when_provided":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_drops_unsupported_hangup_cause_values_from_request_payload":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_fails_fast_when_workspace_id_is_missing_for_gate_flash_calls":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_creates_gate_flash_call_with_documented_ringTimeout_payload":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_polls_flash_call_and_succeeds_once_accepted":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_fails_flash_gate_flow_when_terminal_failure_status_is_returned":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_does_not_fallback_to_regular_gate_call_when_flash_succeeds":8,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_falls_back_to_regular_gate_call_when_flash_fails":8,"P\\Tests\\Unit\\Selfserve\\SelfserveOpenApiSpecTest::__pest_evaluable_it_documents_property_gate_lane_commands_and_sanitized_gate_failure_responses":1,"P\\Tests\\Unit\\Bird\\BirdModuleClientMappingTest::__pest_evaluable_it_returns_raw_payload_for_malformed_JSON_responses_and_null_for_empty_responses":8,"P\\Tests\\Unit\\Bird\\BirdRouteWiringTest::__pest_evaluable_it_keeps_Bird_number_and_webhook_routes_intact":7,"P\\Tests\\Unit\\Bird\\BirdModuleClientMappingTest::__pest_evaluable_it_handles_malformed_and_empty_response_bodies_without_throwing_transport_errors":8,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherStatusTargetsTest::__pest_evaluable_it_aggregates_multi_department_slot_statuses_using_worst_severity_and_unknown_fallback_rules":7,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_adds_vehicle_type_product_on_STOP_when_program_selector_relay_is_online__then_turns_off_cleaner_and_machine_relays":7,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_bills_primary_product_when_selector_relay_is_online_even_if_relay_output_is_off":7,"P\\Tests\\Unit\\Bird\\BirdOpenApiSpecTest::__pest_evaluable_it_documents_all_Bird_voice_call_parity_endpoints_including_gather_recordings_insights_and_log":1,"P\\Tests\\Unit\\Bird\\BirdOpenApiSpecTest::__pest_evaluable_it_documents_flash_hangup_endpoint_and_marks_end_alias_as_deprecated":1,"P\\Tests\\Unit\\Bird\\BirdOpenApiSpecTest::__pest_evaluable_it_defines_request_and_response_schemas_for_Bird_call_command_recording_insight_log_and_flash_payloads":1,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueRouteRegistrationTest::__pest_evaluable_it_registers_collected_invoice_queue_endpoints_in_orderInvoicesRoute":7,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueAvailabilityGuardTest::__pest_evaluable_it_uses_a_consistent_unavailable_service_contract_for_missing_queue_dependencies":7,"P\\Tests\\Unit\\Invoicing\\EconomicTransferOrderItemSkipTest::__pest_evaluable_it_wires_zero_cost_and_zero_quantity_skip_guard_into_transfer_line_builder":7,"P\\Tests\\Integration\\Invoicing\\EconomicTransferQueueIntegrationTest::__pest_evaluable_it_processes_queued_transfer_jobs_to_completion":1,"P\\Tests\\Integration\\Invoicing\\EconomicTransferQueueIntegrationTest::__pest_evaluable_it_deduplicates_active_jobs_per_transfer_target":1,"P\\Tests\\Integration\\Invoicing\\EconomicTransferQueueIntegrationTest::__pest_evaluable_it_rejects_invalid_payloads_without_inserting_queue_rows":1,"P\\Tests\\Integration\\Invoicing\\EconomicTransferQueueIntegrationTest::__pest_evaluable_it_supports_fail_retry_and_reprocess_lifecycle_transitions":1,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueAvailabilityGuardTest::__pest_evaluable_it_supports_synchronous_fallback_branches_before_queue_enqueue_on_economic_invoice_export_routes":7,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueAvailabilityGuardTest::__pest_evaluable_it_keeps_queue_status_endpoints_guarded_while_collected_invoice_export_routes_support_synchronous_fallback":7,"P\\Tests\\Unit\\Invoicing\\UserCollectedInvoiceUpdateRouteValidationTest::__pest_evaluable_it_supports_independent_po__number_and_closed__at_updates_for_PUT__collected_invoices_in_user_route":7,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueRouteHardeningTest::__pest_evaluable_it_returns_pagination_metadata_and_strict_status_handling_for_collected_invoice_queue_list":7,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueRouteHardeningTest::__pest_evaluable_it_enforces_retry_constraints_for_collected_invoice_queue_jobs_before_retry_execution":7,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueOpenApiSpecTest::__pest_evaluable_it_documents_collected_queue_list_metadata_and_strict_status_filter_enum_in_openapi":7,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueDetailsSummaryBuilderTest::__pest_evaluable_it_builds_a_completed_collected_invoice_queue_summary_from_payload_and_result":8,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueDetailsSummaryBuilderTest::__pest_evaluable_it_prefers_queue_error_messages_for_failed_jobs_and_keeps_null_safe_outcome_fields":8,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueDetailsSummaryBuilderTest::__pest_evaluable_it_uses_deterministic_status_message_fallback_when_no_explicit_message_exists":8,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueDetailsSummaryBuilderTest::__pest_evaluable_it_handles_object_payload_result_values_and_malformed_fields_without_throwing":8,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueWorkerTickRouteTest::__pest_evaluable_it_ticks_collected_invoice_transfer_queue_from_queue_list_and_status_routes":7,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueWorkerTickRouteTest::__pest_evaluable_it_ticks_order_transfer_queue_from_draft_and_invoice_status_routes":7,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayUpdateLifecycleTest::__pest_evaluable_it_builds_the_installer_around_the_PHP_agent_artifacts_and_management_polling_config":8,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayUpdateLifecycleTest::__pest_evaluable_it_exposes_update_payload__credential_rotation__and_operation_endpoints_without_shell_transport_wiring":8,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerHeartbeatStatusTest::__pest_evaluable_it_derives_relay_fallback_and_transport_health_details_without_shell_or_update_runtime_state":7,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayArtifactLocatorTest::__pest_evaluable_it_resolves_edge_agent_artifacts_from_the_source_tree_layout":7,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayArtifactLocatorTest::__pest_evaluable_it_prioritizes_mounted_and_baked_in_artifact_directories_before_repo_fallbacks":7,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayArtifactLocatorTest::__pest_evaluable_it_prioritizes_router_resources_before_mounted_and_baked_in_artifact_directories":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_lists_orders_for_an_admin_scoped_user_and_limits_the_results_to_the_permitted_departments":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_lists_only_the_targeted_customer_orders_for_subuser_sessions":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_returns_the_current_auth_and_permission_failures_when_order_listing_is_not_allowed":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_creates_orders_through_the_real_endpoint":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_rejects_invalid_order_creation_requests":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_updates_orders_through_the_primary_endpoint":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_reassigns_invoice_collections_when_changing_an_order_across_the_draft_customer_boundary":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_supports_legacy_field_value_metadata_updates_through_the_primary_endpoint":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_rejects_invalid_updates_through_the_primary_order_endpoint":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_updates_orders_through_the_legacy_alias_endpoint":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_supports_legacy_field_value_metadata_updates_through_the_alias_endpoint":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_rejects_invalid_updates_through_the_legacy_alias_endpoint":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_rejects_unsupported_legacy_field_value_updates_on_both_update_endpoints":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_deletes_orders_through_the_real_endpoint":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_rejects_invalid_order_delete_requests":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_regenerates_attached_wash_certificates_when_certificate_metadata_changes_through_the_primary_endpoint":7,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_regenerates_attached_wash_certificates_for_legacy_field_value_updates_through_the_alias_endpoint":7,"P\\Tests\\Api\\ApiCoverageManifestTest::__pest_evaluable_it_keeps_every_selected_API_operation_covered_by_happy_path_and_failure_tests":1,"P\\Tests\\Api\\ApiCoverageManifestTest::__pest_evaluable_it_keeps_the_OpenAPI_manifest_entries_aligned_with_the_API_spec":1,"P\\Tests\\Api\\ApiFixturesCleanupTest::__pest_evaluable_it_removes_generated_customer_traces_during_fixture_cleanup":1,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_logs_in_with_valid_customer_credentials":1,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_rejects_invalid_login_payloads_and_credentials":1,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_returns_the_cached_auth_session_payload_for_a_valid_token":1,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_includes_economic_runtime_config_for_uncached_auth_sessions":1,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_rejects_invalid_auth_session_tokens":1,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_logs_out_and_invalidates_the_token_for_future_session_calls":1,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_logs_out_and_invalidates_cached_subuser_sessions":1,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_rejects_invalid_logout_tokens":1,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_returns_the_raw_202_gather_webhook_contract_over_HTTP":1,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_still_prompts_for_department_selection_when_only_one_department_is_eligible":7,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_accepts_the_legacy_initial_webhook_body_with_top_level_call_identifiers":7,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_returns_native_flow_gather_data_after_a_top_level_department_selection_when_distinct_gate_choices_exist":7,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_opens_the_gate_immediately_after_a_top_level_department_selection_when_entrance_and_exit_share_the_same_gate":7,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_uses_a_multi_digit_gather_contract_when_10_departments_are_eligible":7,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_returns_a_raw_400_transport_error_for_malformed_webhook_payloads":1,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_lists_only_visible_departments_and_can_return_a_single_department_with_the_slack_webhook":7,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_rejects_department_listing_when_the_permission_is_missing":7,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_creates_departments_through_the_real_endpoint":7,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_rejects_invalid_department_create_requests":7,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_updates_departments_through_the_real_endpoint":7,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_rejects_invalid_department_update_requests":7,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_lists_department_categories_for_a_department":7,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_rejects_invalid_department_category_requests":7,"P\\Tests\\Api\\EconomicDraftCustomerApiTest::__pest_evaluable_it_lists_the_draft_customer_config_entry_in_economic_config_responses":1,"P\\Tests\\Api\\EconomicDraftCustomerApiTest::__pest_evaluable_it_round_trips_the_draft_customer_config_value_through_economic_config_updates":1,"P\\Tests\\Api\\EconomicDraftCustomerApiTest::__pest_evaluable_it_rejects_order_draft_exports_for_the_configured_draft_customer":1,"P\\Tests\\Api\\EconomicDraftCustomerApiTest::__pest_evaluable_it_rejects_booked_invoice_exports_for_the_configured_draft_customer":1,"P\\Tests\\Api\\EconomicDraftCustomerApiTest::__pest_evaluable_it_rejects_collected_invoice_exports_for_the_configured_draft_customer":1,"P\\Tests\\Api\\PingApiTest::__pest_evaluable_it_returns_the_ping_contract":1,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_returns_a_setup_required_error_when_department_terminal_readers_are_requested_without_terminal_setup":8,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_sends_a_Stripe_invoice_by_email_and_persists_the_hosted_invoice_association":8,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_returns_a_conflict_when_a_Stripe_hosted_invoice_is_already_active_for_the_order":8,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_allows_sending_a_new_Stripe_hosted_invoice_when_the_existing_association_is_already_terminal":8,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_voids_an_unpaid_Stripe_hosted_invoice_and_clears_the_local_order_association":8,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_refuses_to_cancel_a_paid_Stripe_hosted_invoice":8,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_returns_a_setup_required_error_when_creating_a_payment_intent_for_a_department_without_terminal_setup":8,"P\\Tests\\Api\\VehiclesApiTest::__pest_evaluable_it_returns_the_newest_vehicle_last__order__id_that_still_has_order_items":7,"P\\Tests\\Api\\VehiclesApiTest::__pest_evaluable_it_returns_a_null_vehicle_last__order__id_when_no_order_with_items_exists":7,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayViewCacheTest::__pest_evaluable_it_syncs_gateway_snapshots_into_cached_list_payloads_and_refreshes_fleet_usage":7,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayModuleRouteWiringTest::__pest_evaluable_it_keeps_only_the_module_facade_in_the_global_classes_directory_and_conditionally_loads_module_routes":7,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_builds_install_script_urls_with_the_compose_edge_gateway_artifacts_and_forwarded_https_scheme":8,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayUpdateLifecycleTest::__pest_evaluable_it_builds_the_installer_around_the_compose_stack_artifacts_and_management_polling_config":7,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayUpdateLifecycleTest::__pest_evaluable_it_exposes_update_payload__credential_rotation__cancel_endpoints__and_operation_endpoints_without_shell_transport_wiring":7,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayRouteWiringTest::__pest_evaluable_it_registers_the_v2_operator_facing_edge_gateway_routes":7,"P\\Tests\\Unit\\Selfserve\\EdgeGatewaySchemaBootstrapTest::__pest_evaluable_it_defines_the_v2_edge_gateway_schema_bootstrap_tables":7,"P\\Tests\\Unit\\Selfserve\\EdgeGatewaySchemaBootstrapTest::__pest_evaluable_it_stores_operation_metadata_and_event_timelines_for_management_workflows":7,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_prefers_EDGE__PUBLIC__API__URL_when_explicitly_configured":8,"P\\Tests\\Api\\PlateScannersApiTest::__pest_evaluable_it_returns_the_updated_lane_id_after_editing_a_scanner_whose_null_lane_was_already_cached":7,"P\\Tests\\Api\\EdgeGatewayAgentApiTest::__pest_evaluable_it_serves_installer_artifacts_and_recovers_gateway_runtime_status_after_fresh_heartbeats":1,"P\\Tests\\Api\\EdgeGatewayAgentApiTest::__pest_evaluable_it_polls_operations_and_commands__submits_results__and_records_broker_presence_for_task_pages":7,"P\\Tests\\Api\\EdgeGatewayBrokerApiTest::__pest_evaluable_it_builds_broker_backlog_and_completes_gateway_operations_through_broker_endpoints":8,"P\\Tests\\Api\\EdgeGatewayOperatorApiTest::__pest_evaluable_it_creates_install_tokens__tracks_installer_status__and_exposes_claimed_gateway_detail_to_authorized_operators":1,"P\\Tests\\Api\\EdgeGatewayOperatorApiTest::__pest_evaluable_it_manages_edge_gateway_metadata__bindings__operations__sessions__rotation__cutover__and_deletion":8,"P\\Tests\\Integration\\EdgeGateway\\EdgeGatewayBackendIntegrationTest::__pest_evaluable_it_assembles_tasks__logs__statistics__operations__commands__and_shell_lifecycle_state_from_persisted_records":1,"P\\Tests\\Api\\EdgeGatewayBrokerApiTest::__pest_evaluable_it_rejects_invalid_edge_broker_shared_secrets":1,"P\\Tests\\Api\\EdgeGatewayOperatorApiTest::__pest_evaluable_it_rejects_operator_edge_routes_when_module_permission_or_department_access_is_missing":1,"P\\Tests\\Api\\EdgeGatewayAgentApiTest::__pest_evaluable_it_rejects_missing_and_invalid_edge_agent_tokens":1,"P\\Tests\\Integration\\EdgeGateway\\EdgeGatewayBackendIntegrationTest::__pest_evaluable_it_persists_gateway_cutover_relay_bindings_used_by_self_serve_Shelly_dispatch":1,"P\\Tests\\Api\\EdgeGatewayBrokerApiTest::__pest_evaluable_it_validates_broker_sessions_and_ingests_presence__telemetry__logs__and_shell_lifecycle_data":1,"P\\Tests\\Api\\EdgeGatewayBrokerApiTest::__pest_evaluable_it_rejects_shell_session_creation_while_broker_presence_is_unavailable":1,"P\\Tests\\Api\\EdgeGatewayOperatorApiTest::__pest_evaluable_it_ignores_and_soft_deletes_edge_gateways_whose_department_no_longer_exists":8,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_appends_forwarded_ports_when_the_forwarded_host_omits_them":8,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_builds_websocket_broker_urls_on_the_traefik_broker_path":8,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_builds_localhost_websocket_broker_urls_on_the_local_traefik_api_prefix":8,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_keeps_root_host_api_urls_unprefixed_when_the_request_is_not_under_the_local_api_alias":8,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_resolves_simulator_gateway_service_bindings_from_lane_relay_slots":7,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_counts_overtime_minutes_when_a_saved_shift_end_extends_past_the_approved_original_end":7,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_counts_unapproved_overtime_from_a_bounded_shift_updateTime_fallback":7,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_caps_current_slot_hours_to_elapsed_minutes_and_zeroes_future_slots":7,"P\\Tests\\Api\\EconomicDraftCustomerApiTest::__pest_evaluable_it_round_trips_the_default_distribution_department_config_value_through_economic_config_updates":1,"P\\Tests\\Unit\\Replication\\ReplicationSecretBoxTest::__pest_evaluable_it_encrypts_replication_secrets_without_storing_plaintext":8,"P\\Tests\\Unit\\Replication\\ReplicationSecretBoxTest::__pest_evaluable_it_builds_active_database_and_redis_config_from_encrypted_bootstrap_snapshots":8,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_does_not_require_replica_SQL_threads_before_database_provisioning_configures_them":7,"P\\Tests\\Unit\\Invoicing\\EconomicDraftCustomerOpenApiSpecTest::__pest_evaluable_it_documents_transaction_draft_customer_config_and_auth_runtime_fields_in_all_tracked_openapi_copies":1,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_computes_MinIO_free_space_and_catch_up_math_safely":7,"P\\Tests\\Integration\\DailyReports\\DepartmentDailyReportComplaintsIntegrationTest::__pest_evaluable_it_counts_complaint_rows_by_department_and_created__at_reporting_range":1,"P\\Tests\\Integration\\DailyReports\\DepartmentDailyReportComplaintsIntegrationTest::__pest_evaluable_it_updates_and_deletes_complaint_rows":1,"P\\Tests\\Integration\\DailyReports\\DepartmentDailyReportComplaintsIntegrationTest::__pest_evaluable_it_parses_created__by__name_from_the_users_table":1,"P\\Tests\\Integration\\DailyReports\\DepartmentOutsideHoursStatisticsServiceIntegrationTest::__pest_evaluable_it_integrates_orders__xlvask__and_self_serve_into_one_outside_hours_summary_with_missing_hours_diagnostics":1,"P\\Tests\\Integration\\EdgeGateway\\EdgeGatewayBackendIntegrationTest::__pest_evaluable_it_persists_install_session_updates_and_derives_gateway_runtime_status_from_heartbeats":1,"P\\Tests\\Integration\\Invoicing\\EconomicTransferQueueIntegrationTest::__pest_evaluable_it_processes_only_collected_invoice_jobs_and_respects_the_manual_batch_limit":1,"P\\Tests\\Integration\\SystemStatus\\SuperuserSystemStatusInfrastructureProbeTest::__pest_evaluable_it_can_probe_the_configured_database_in_integration_mode":1,"P\\Tests\\Integration\\SystemStatus\\SuperuserSystemStatusInfrastructureProbeTest::__pest_evaluable_it_can_probe_redis_in_integration_mode_when_configured":1,"P\\Tests\\Integration\\SystemStatus\\SuperuserSystemStatusInfrastructureProbeTest::__pest_evaluable_it_can_probe_minio_in_integration_mode_when_configured":1,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_creates_Coolify_service_payloads_from_raw_compose_without_a_service_type":7,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_uses_the_selected_Coolify_project_and_resolves_server_UUID_from_the_instance_default":8,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_creates_Coolify_GitHub_App_application_payloads_so_pulls_use_the_app_token":7,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_uses_the_self_contained_Coolify_API_Dockerfile_for_API_applications":7,"P\\Tests\\Unit\\Tooling\\ComposerEntrypointTest::__pest_evaluable_it_checks_PSR_HTTP_message_interfaces_before_trusting_a_Composer_vendor_tree":7,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_defines_release_manager_schema__routes__permissions__and_system_status_integration_hooks":7,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_requires_non_default_release_channel_runtime_URLs_and_preserves_load_balancer_paths":7,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_wires_MinIO_replication_through_routes_and_bootstrap_snapshots":7,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_defines_Coolify_schema__route_permissions__and_replication_integration_hooks":7,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_chooses_a_requested_runtime_channel_only_when_it_is_available_to_the_principal":8,"P\\Tests\\Api\\OrderBookingsCompletionApiTest::__pest_evaluable_it_rejects_standalone_order_booking_completion_outside_POS":7,"P\\Tests\\Api\\OrderBookingsCompletionApiTest::__pest_evaluable_it_allows_linked_POS_order_booking_completion_for_mobile_POS_compatibility":7,"P\\Tests\\Api\\OrderBookingsCompletionApiTest::__pest_evaluable_it_accepts_numeric_safety_seal_strings_when_completing_a_linked_POS_order_booking":7,"P\\Tests\\Api\\OrderBookingsCompletionApiTest::__pest_evaluable_it_disables_the_legacy_complete_wash_without_certificate_route":1,"P\\Tests\\Api\\OrderBookingsUpdateApiTest::__pest_evaluable_it_detaches_an_order_booking_and_clears_the_matching_order_link":8,"P\\Tests\\Api\\OrderBookingsUpdateApiTest::__pest_evaluable_it_keeps_the_linked_order_when_order__id_is_omitted_from_an_order_booking_update":8,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_allows_explicit_runtime_selection_of_any_enabled_release_channel":7},"times":{"P\\Tests\\Unit\\Auth\\CreateTokenTest::__pest_evaluable_it_creates_a_64_char_auth_token_for_an_existing_user":0.11,"P\\Tests\\Unit\\Auth\\CreateTokenTest::__pest_evaluable_it_throws_a_clear_exception_when_customer_user_is_missing":0.017,"P\\Tests\\Unit\\Auth\\LegacyAuthScriptParityTest::__pest_evaluable_it_keeps_passkey_challenge_legacy_script_green_during_migration":0.051,"P\\Tests\\Unit\\Auth\\LegacyAuthScriptParityTest::__pest_evaluable_it_keeps_register_CVR_legacy_script_green_during_migration":0.047,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteIvrTest::__pest_evaluable_it_builds_deterministic_department_digit_map_and_caps_to_9_options":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteIvrTest::__pest_evaluable_it_resolves_department_ids_by_selected_digit":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteIvrTest::__pest_evaluable_it_resolves_gate_type_digit_to_entrance_or_exit":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteIvrTest::__pest_evaluable_it_stores__loads_and_clears_ivr_state_with_ttl":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteIvrTest::__pest_evaluable_it_validates_state_caller_fingerprint_matching":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteIvrTest::__pest_evaluable_it_builds_department_and_gate_prompts":0,"P\\Tests\\Unit\\Permissions\\PermissionNodeDefinitionTest::__pest_evaluable_it_creates_permission_nodes_linked_to_subuser_permission_keys":0,"P\\Tests\\Unit\\Permissions\\PermissionNodeDefinitionTest::__pest_evaluable_it_rejects_empty_permission_definitions":0,"P\\Tests\\Unit\\Selfserve\\NormalizationTest::__pest_evaluable_it_normalizes_button_arrays__json_and_csv_inputs":0,"P\\Tests\\Unit\\Selfserve\\NormalizationTest::__pest_evaluable_it_rejects_invalid_button_inputs":0,"P\\Tests\\Unit\\Selfserve\\NormalizationTest::__pest_evaluable_it_normalizes_vehicle_type_values_and_null_semantics":0,"P\\Tests\\Unit\\Selfserve\\NormalizationTest::__pest_evaluable_it_rejects_invalid_vehicle_type_values":0,"P\\Tests\\Unit\\Selfserve\\NormalizationTest::__pest_evaluable_it_rejects_non_numeric_vehicle_type_strings":0,"P\\Tests\\Unit\\Selfserve\\NormalizationTest::__pest_evaluable_it_keeps_lane_service_enum_contract_for_MACHINE":0,"P\\Tests\\Unit\\Subusers\\SubuserGrantInitializationTest::__pest_evaluable_it_initializes_booking_node_grants_without_DB_dependency":0.001,"P\\Tests\\Unit\\Subusers\\SubuserGrantInitializationTest::__pest_evaluable_it_initializes_selfserve_node_grants_without_DB_dependency":0,"P\\Tests\\Unit\\Subusers\\SubusersRoutePermissionLinkTest::__pest_evaluable_it_keeps_subusers_route_list_permission_linked_to_SUBUSERS__LIST_node":0.007,"P\\Tests\\Unit\\Search\\SystemSearchEntityTypeCoverageTest::__pest_evaluable_it_keeps_route_and_service_entity_type_registries_in_sync_with_expanded_coverage":0,"P\\Tests\\Unit\\Search\\SystemSearchEntityTypeCoverageTest::__pest_evaluable_it_documents_every_supported_search_entity_type_in_openapi_enum":0.016,"P\\Tests\\Unit\\Search\\SystemSearchEconomicCustomerIndexWiringTest::__pest_evaluable_it_wires_local_e_conomic_customer_index_into_customer_related_search_entities":0.005,"P\\Tests\\Unit\\Search\\SystemSearchEconomicCustomerIndexWiringTest::__pest_evaluable_it_registers_cron_tasks_that_keep_the_e_conomic_search_index_refreshed":0.005,"P\\Tests\\Unit\\Search\\SystemSearchInvalidationHooksTest::__pest_evaluable_it_marks_system_search_cache_dirty_from_generic_db_object_mutation_flows":0.007,"P\\Tests\\Unit\\Search\\SystemSearchInvalidationHooksTest::__pest_evaluable_it_marks_system_search_cache_dirty_from_object_property_mutations":0.004,"P\\Tests\\Unit\\Search\\SystemSearchInvalidationHooksTest::__pest_evaluable_it_marks_system_search_cache_dirty_when_module_config_values_change":0.004,"P\\Tests\\Unit\\Search\\SystemSearchInvalidationHooksTest::__pest_evaluable_it_registers_cron_maintenance_task_for_system_search_cache":0.003,"P\\Tests\\Unit\\Search\\SystemSearchOpenAiIntentParserTest::__pest_evaluable_it_redacts_obvious_sensitive_fragments_before_sending_query_to_intent_parser":0.001,"P\\Tests\\Unit\\Search\\SystemSearchOpenAiIntentParserTest::__pest_evaluable_it_builds_payload_with_redacted_query_and_parses_strict_JSON_output":0,"P\\Tests\\Unit\\Search\\SystemSearchOpenAiIntentParserTest::__pest_evaluable_it_falls_back_safely_when_OpenAI_is_disabled":0,"P\\Tests\\Unit\\Search\\SystemSearchOpenAiIntentParserTest::__pest_evaluable_it_handles_malformed_OpenAI_response_payloads_without_throwing":0,"P\\Tests\\Unit\\Search\\SystemSearchOpenAiIntentParserTest::__pest_evaluable_it_uses_parser_cache_for_identical_query_and_allowed_type_combinations":0,"P\\Tests\\Unit\\Search\\SystemSearchOpenAiIntentParserTest::__pest_evaluable_it_caps_alias_and_hint_payloads_from_OpenAI_and_filters_hints_to_allowed_types":0,"P\\Tests\\Unit\\Search\\SystemSearchOpenApiSpecTest::__pest_evaluable_it_documents_system_wide_search_endpoints_in_openapi":0.009,"P\\Tests\\Unit\\Search\\SystemSearchOpenApiSpecTest::__pest_evaluable_it_documents_debug__intent_and_parser_metadata_schema_in_openapi":0.009,"P\\Tests\\Unit\\Search\\SystemSearchOpenApiSpecTest::__pest_evaluable_it_documents_e_conomic_indexed_customer_matching_and_synonym_behavior":0.008,"P\\Tests\\Unit\\Search\\SystemSearchRouteBehaviorTest::__pest_evaluable_it_normalizes_type_lists_from_csv_json_and_arrays":0,"P\\Tests\\Unit\\Search\\SystemSearchRouteBehaviorTest::__pest_evaluable_it_parses_booleans_and_clamps_integers_using_route_defaults":0,"P\\Tests\\Unit\\Search\\SystemSearchRouteBehaviorTest::__pest_evaluable_it_exposes_expected_searchable_entity_types":0,"P\\Tests\\Unit\\Search\\SystemSearchRouteWiringTest::__pest_evaluable_it_registers_system_wide_search_GET_and_POST_endpoints_with_intent_debug_support":0.005,"P\\Tests\\Unit\\Search\\SystemSearchRouteWiringTest::__pest_evaluable_it_registers_superuser_cache_clear_and_rebuild_endpoints_for_system_search":0.004,"P\\Tests\\Unit\\Search\\SystemSearchRouteWiringTest::__pest_evaluable_it_passes_permission_and_own_scope_context_into_system_search_service":0.003,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_does_not_invoke_intent_parser_when_lexical_confidence_is_already_high":0.001,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_invokes_parser_on_low_confidence_lexical_results_and_applies_hints_only_boosts":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_never_lets_parser_entity_hints_override_explicit_include_filters":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_returns_fallback_parser_metadata_when_parser_fails_gracefully":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_scopes_query_cache_by_permission_context_to_avoid_cross_user_cache_leakage":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_caps_AI_driven_expanded_terms_to_prevent_query_amplification":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_expands_danish_discount_wording_into_lexical_discount_synonyms":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_invokes_parser_for_intent_driven_natural_language_queries_even_when_lexical_score_is_high":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_uses_association_hints_to_pull_related_customer_records_from_non_customer_matches":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_prefers_newer_records_when_relevance_scores_are_comparable":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_keeps_explicit_identifier_matches_ahead_of_newer_but_weaker_records":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_promotes_invoices_orders_order_bookings_and_customers_in_ranking":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_never_prioritizes_cancelled_bookings_over_active_bookings":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_heavily_demotes_configured_low_priority_entity_types_in_ranking":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_tokenizes_unicode_names_without_stripping_non_ascii_letters":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_does_not_treat_explicit_identifier_queries_as_intent_driven":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_requires_broader_term_coverage_for_multi_word_scoring":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_enriches_object_attachment_results_with_associated_customer_context":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_includes_the_economic_customer_index_in_cache_dependencies_for_customer_scoped_results":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_falls_back_to_invoice_date_ranges_when_invoice_names_are_missing":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_derives_xlvask_customer_numbers_only_from_digits_only_extern_ids":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_replaces_unnamed_user_titles_with_the_customer_context_name":0,"P\\Tests\\Unit\\Search\\SystemSearchServiceIntentFlowTest::__pest_evaluable_it_uses_the_goal_criteria_label_for_department_goal_titles":0,"P\\Tests\\Integration\\Search\\SystemSearchCacheIntegrationTest::__pest_evaluable_it_reuses_parser_cache_entries_for_repeated_natural_language_intent_requests":0.129,"P\\Tests\\Integration\\Search\\SystemSearchCacheIntegrationTest::__pest_evaluable_it_clears_parser_cache_namespace_via_clearAll_to_force_a_fresh_parse":0,"P\\Tests\\Integration\\Search\\SystemSearchCacheIntegrationTest::__pest_evaluable_it_bumps_per_table_cache_versions_when_a_dirty_table_marker_is_registered":0.05,"P\\Tests\\Unit\\Invoicing\\EconomicV2DistributionServiceFallbackTest::__pest_evaluable_it_falls_back_to_system_orders_for_fixed_pricing_when_regular_orders_yield_no_customers":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2DistributionServiceFallbackTest::__pest_evaluable_it_falls_back_to_system_orders_for_wash_subscriptions_when_regular_orders_yield_no_customers":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2CliBackfillCommandTest::__pest_evaluable_it_registers_economic_v2_backfill_command_in_cli_dispatcher":0.003,"P\\Tests\\Unit\\Invoicing\\EconomicV2CliBackfillCommandTest::__pest_evaluable_it_provides_a_backfill_cron_script_entrypoint":0.005,"P\\Tests\\Unit\\Invoicing\\EconomicV2CompareEngineTest::__pest_evaluable_it_returns_exact__match_when_totals_lines_and_departments_are_identical":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2CompareEngineTest::__pest_evaluable_it_returns_total__mismatch_when_only_totals_differ":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2CompareEngineTest::__pest_evaluable_it_detects_line_level_mismatches_for_quantity_and_price":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2CompareEngineTest::__pest_evaluable_it_detects_departmental_distribution_mismatches":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2CompareEngineTest::__pest_evaluable_it_returns_missing__target_when_draft_or_booked_target_is_unavailable":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2LineNormalizerTest::__pest_evaluable_it_normalizes_draft_invoice_lines_including_departmental_distributions":0.001,"P\\Tests\\Unit\\Invoicing\\EconomicV2LineNormalizerTest::__pest_evaluable_it_marks_text_only_zero_value_lines_as_non_billable_and_keeps_deterministic_key":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2LineNormalizerTest::__pest_evaluable_it_normalizes_booked_invoices_and_computes_net_total_delta_from_lines":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2LineNormalizerTest::__pest_evaluable_it_contains_internal_normalization_path_with_departmental_metadata_support":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicV2OpenApiSpecTest::__pest_evaluable_it_documents_economic_v2_invoice_paths_in_openapi":0.01,"P\\Tests\\Unit\\Invoicing\\EconomicV2OpenApiSpecTest::__pest_evaluable_it_documents_v2_historical_distribution_and_pricing_history_paths_in_openapi":0.01,"P\\Tests\\Unit\\Invoicing\\EconomicV2OpenApiSpecTest::__pest_evaluable_it_aligns_legacy_compare_schema_with_runtime_payload_by_removing_stale_required_order__ids":0.01,"P\\Tests\\Unit\\Invoicing\\EconomicV2OpenApiSpecTest::__pest_evaluable_it_defines_new_reusable_v2_schemas_for_normalization_comparison_versioning_and_distribution":0.01,"P\\Tests\\Unit\\Invoicing\\EconomicV2RevenueAndBarredSupportTest::__pest_evaluable_it_supports_barred_filtering_when_listing_e_conomic_customers":0.009,"P\\Tests\\Unit\\Invoicing\\EconomicV2RevenueAndBarredSupportTest::__pest_evaluable_it_implements_a_dedicated_v2_e_conomic_revenue_statistics_service_and_route":0.008,"P\\Tests\\Unit\\Invoicing\\EconomicV2RouteAndVersioningHooksTest::__pest_evaluable_it_registers_all_collected_invoice_economic_v2_routes_with_explicit_permissions":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicV2RouteAndVersioningHooksTest::__pest_evaluable_it_registers_version_aware_distribution_and_pricing_history_v2_routes":0.005,"P\\Tests\\Unit\\Invoicing\\EconomicV2RouteAndVersioningHooksTest::__pest_evaluable_it_caches_v2_distribution_responses_with_a_configurable_redis_ttl":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicV2RouteAndVersioningHooksTest::__pest_evaluable_it_writes_fixed_pricing_versions_from_create_and_delete_flows":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicV2RouteAndVersioningHooksTest::__pest_evaluable_it_writes_vehicle_subscription_versions_for_create_update_delete_flows":0.003,"P\\Tests\\Unit\\Invoicing\\EconomicV2RouteAndVersioningHooksTest::__pest_evaluable_it_writes_discount_override_versions_from_superuser_discounts_route":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicV2RouteAndVersioningHooksTest::__pest_evaluable_it_keeps_legacy_compare_endpoint_path_for_backward_compatibility":0.003,"P\\Tests\\Unit\\Invoicing\\EconomicV2VersioningServiceStructureTest::__pest_evaluable_it_implements_effective_range_lifecycle_methods_for_all_versioned_entities":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicV2VersioningServiceStructureTest::__pest_evaluable_it_closes_previous_active_interval_before_inserting_a_new_version":0.003,"P\\Tests\\Unit\\Invoicing\\EconomicV2VersioningServiceStructureTest::__pest_evaluable_it_includes_best_effort_backfill_with_provenance_and_confidence_metadata":0.003,"P\\Tests\\Unit\\Invoicing\\EconomicV2VersioningServiceStructureTest::__pest_evaluable_it_anchors_historical_resolution_on_order_created__at_timestamps_in_distribution_service":0.006,"P\\Tests\\Unit\\Invoicing\\InvoicingOrdersCalculationsHardeningTest::__pest_evaluable_it_guards_against_empty_order_ids_in_net_amount_calculation":0.006,"P\\Tests\\Unit\\Invoicing\\InvoicingOrdersCalculationsHardeningTest::__pest_evaluable_it_guards_against_empty_customer_arrays_in_date_range_transaction_fetches":0.005,"P\\Tests\\Unit\\Invoicing\\InvoicingOrdersCalculationsHardeningTest::__pest_evaluable_it_uses_centralized_duplicate_filtering_for_possible_duplicate_detection":0.005,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodRouteCacheHelpersTest::__pest_evaluable_it_uses_sane_ttl_defaults_and_clamps_negative_ttl_to_zero":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodRouteCacheHelpersTest::__pest_evaluable_it_builds_deterministic_cache_keys_per_scope_and_date_range":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodRouteCacheHelpersTest::__pest_evaluable_it_falls_back_to_resolver_directly_when_cache_ttl_is_disabled":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodRouteGuardsTest::__pest_evaluable_it_requires_superuser_permission_for_invoicing_period_distribution_all_endpoint":0.005,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodRouteGuardsTest::__pest_evaluable_it_uses_shared_date_range_normalization_across_invoicing_period_endpoints":0.042,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodUtilsTest::__pest_evaluable_it_normalizes_a_valid_invoicing_date_range_to_full_day_timestamps":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodUtilsTest::__pest_evaluable_it_rejects_invalid_date_formats":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodUtilsTest::__pest_evaluable_it_rejects_descending_date_ranges":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodUtilsTest::__pest_evaluable_it_finds_duplicate_orders_regardless_of_original_input_order":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2DistributionServiceFallbackTest::__pest_evaluable_it_runs_best_effort_backfill_when_fixed_pricing_version_history_is_empty":0,"P\\Tests\\Unit\\Selfserve\\SelfserveConditionEvaluatorTest::__pest_evaluable_it_evaluates_self_serve_conditions_with_combined_AND_and_OR_semantics":0.001,"P\\Tests\\Unit\\Selfserve\\SelfserveConditionEvaluatorTest::__pest_evaluable_it_prefers_condition_results_over_question_answers_when_evaluating_task_gates":0,"P\\Tests\\Unit\\Selfserve\\SelfserveOpenApiSpecTest::__pest_evaluable_it_documents_self_serve_machine_type__eligibility__summary__and_webhook_endpoints":0.009,"P\\Tests\\Unit\\Selfserve\\SelfserveOpenApiSpecTest::__pest_evaluable_it_defines_reusable_self_serve_wash_and_machine_type_schemas":0.007,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_wires_self_serve_machine_types__eligibility__summaries__and_machine_start_webhook_routes":0.01,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_keeps_machine_type_support_wired_into_lanes__tasks__and_conditions_routes":0.012,"P\\Tests\\Unit\\N8n\\N8nRouteHelpersTest::__pest_evaluable_it_normalizes_webhook_methods_and_falls_back_to_POST_for_unsupported_verbs":0,"P\\Tests\\Unit\\N8n\\N8nRouteHelpersTest::__pest_evaluable_it_filters_request_parameters_down_to_the_allowed_n8n_query_keys":0,"P\\Tests\\Unit\\N8n\\N8nRouteWiringTest::__pest_evaluable_it_registers_workflow_lifecycle_endpoints_for_the_n8n_module":0.006,"P\\Tests\\Unit\\N8n\\N8nRouteWiringTest::__pest_evaluable_it_registers_execution_and_webhook_trigger_endpoints_for_the_n8n_module":0.003,"P\\Tests\\Unit\\Invoicing\\EconomicV2BookedDepartment75DistributionTest::__pest_evaluable_it_redistributes_booked_department_75_net_amounts_using_fixed_pricing_and_wash_subscription_weights":0.001,"P\\Tests\\Unit\\Invoicing\\EconomicV2BookedDepartment75DistributionTest::__pest_evaluable_it_keeps_classified_booked_department_75_amounts_undistributed_when_no_monthly_basis_exists":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2BookedDepartment75DistributionTest::__pest_evaluable_it_keeps_unclassified_booked_department_75_lines_undistributed_with_warnings":0,"P\\Tests\\Unit\\Invoicing\\EconomicEndpointUrlEncodingTest::__pest_evaluable_it_encodes_raw_filter_query_values_that_include_timestamps":0,"P\\Tests\\Unit\\Invoicing\\EconomicEndpointUrlEncodingTest::__pest_evaluable_it_avoids_double_encoding_query_values_that_are_already_escaped":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2BookedDepartment75DistributionTest::__pest_evaluable_it_supports_bulk_booked_invoice_line_payloads_with_top_level_department_numbers":0,"P\\Tests\\Unit\\Redis\\RedisAtomicReservationTest::__pest_evaluable_it_claims_a_slot_atomically_with_nx_and_expiration":0,"P\\Tests\\Unit\\Redis\\RedisAtomicReservationTest::__pest_evaluable_it_returns_false_when_the_slot_is_already_claimed_and_clamps_ttl_to_one_second":0,"P\\Tests\\Unit\\Bookings\\OrderBookingRouteIdempotencyGuardTest::__pest_evaluable_it_guards_order_booking_creation_with_redis_backed_idempotency":0.006,"P\\Tests\\Unit\\DynamicImages\\DynamicImagePreRenderCronWiringTest::__pest_evaluable_it_registers_dynamic_image_pre_render_cron_task_and_related_helpers":0.003,"P\\Tests\\Integration\\Database\\DbConnectionTest::__pest_evaluable_it_can_connect_to_a_configured_MySQL_instance_in_integration_mode":0.016,"P\\Tests\\Integration\\Invoicing\\EconomicV2BackfillAndDistributionIntegrationTest::__pest_evaluable_it_runs_best_effort_backfill_repeatedly_without_introducing_duplicate_same_start_rows":0.013,"P\\Tests\\Integration\\Invoicing\\EconomicV2BackfillAndDistributionIntegrationTest::__pest_evaluable_it_resolves_version_aware_distribution_payload_shapes_over_a_real_date_range":0.016,"P\\Tests\\Integration\\Invoicing\\EconomicV2VersioningServiceIntegrationTest::__pest_evaluable_it_creates_closes_and_rotates_fixed_pricing_versions_without_overlap":0.015,"P\\Tests\\Integration\\Invoicing\\EconomicV2VersioningServiceIntegrationTest::__pest_evaluable_it_tracks_vehicle_and_discount_version_lifecycles_with_closure_semantics":0.014,"P\\Tests\\Integration\\Permissions\\LegacyPermissionRedisCacheScriptTest::__pest_evaluable_it_keeps_legacy_route_permission_redis_cache_script_green":0.01,"P\\Tests\\Unit\\Permissions\\AllowOwnOrDepartmentAccessForbiddenTest::__pest_evaluable_it_returns_both_own_and_elevated_permissions_when_both_are_missing":0,"P\\Tests\\Unit\\Permissions\\AllowOwnOrDepartmentAccessForbiddenTest::__pest_evaluable_it_returns_only_elevated_permission_when_own_permission_exists_but_own_context_fails":0,"P\\Tests\\Unit\\Permissions\\AllowOwnOrDepartmentAccessForbiddenTest::__pest_evaluable_it_allows_elevated_permission_path_without_forbidden_and_validates_department_access":0,"P\\Tests\\Unit\\Permissions\\ForbiddenResponseWiringTest::__pest_evaluable_it_routes_and_trait_use_forbidden_responses_for_permission_and_ownership_denials":0.014,"P\\Tests\\Unit\\Permissions\\GroupPermissionSessionInvalidationWiringTest::__pest_evaluable_it_invalidates_related_user_permission_and_auth_session_caches_when_group_permissions_change":0.006,"P\\Tests\\Unit\\Goals\\GoalsCriteriaTargetDurationTest::__pest_evaluable_it_parses_advanced_target_duration_from_snake__case_fields":0.09,"P\\Tests\\Unit\\Goals\\GoalsCriteriaTargetDurationTest::__pest_evaluable_it_parses_advanced_target_duration_from_camelCase_aliases":0,"P\\Tests\\Unit\\Goals\\GoalsCriteriaTargetDurationTest::__pest_evaluable_it_normalizes_ENTIRE__DURATION_to_ignore_target__duration__every":0,"P\\Tests\\Unit\\Goals\\GoalsCriteriaTargetDurationTest::__pest_evaluable_it_defaults_recurring_target__duration__every_to_1_when_omitted":0,"P\\Tests\\Unit\\Goals\\GoalsCriteriaTargetDurationTest::__pest_evaluable_it_keeps_strict_legacy_mode_when_target__duration_is_invalid":0,"P\\Tests\\Unit\\Goals\\GoalsCriteriaTargetMathTest::__pest_evaluable_it_computes_weekly_target_using_touched_ISO_weeks_for_March_2026":0.001,"P\\Tests\\Unit\\Goals\\GoalsCriteriaTargetMathTest::__pest_evaluable_it_applies_target__duration__every_for_weekly_cadence":0,"P\\Tests\\Unit\\Goals\\GoalsCriteriaTargetMathTest::__pest_evaluable_it_prorates_ENTIRE__DURATION_target_by_overlap_days":0,"P\\Tests\\Unit\\Goals\\GoalsCriteriaTargetMathTest::__pest_evaluable_it_splits_advanced_target_by_override_weights_per_department":0,"P\\Tests\\Unit\\Goals\\GoalsCriteriaTargetMathTest::__pest_evaluable_it_preserves_legacy_target_behavior_when_target__duration_is_missing":0,"P\\Tests\\Unit\\Goals\\GoalsLegacyRendererScriptsTest::__pest_evaluable_it_keeps_legacy_monthly_renderer_script_green":0.198,"P\\Tests\\Unit\\Goals\\GoalsLegacyRendererScriptsTest::__pest_evaluable_it_keeps_legacy_department_daily_renderer_script_green":0.211,"P\\Tests\\Unit\\Goals\\GoalsOpenApiSpecTest::__pest_evaluable_it_documents_advanced_goals_target_duration_fields_in_openapi":0.01,"P\\Tests\\Unit\\Workfeed\\WorkfeedClientConformanceTest::__pest_evaluable_it_uses_company_scoped_workfeed_endpoints_and_raw_Authorization_header":0.003,"P\\Tests\\Unit\\Workfeed\\WorkfeedClientConformanceTest::__pest_evaluable_it_normalizes_documented_shift_query_parameters":0.002,"P\\Tests\\Unit\\Workfeed\\WorkfeedConfigRouteWiringTest::__pest_evaluable_it_registers_module_config_endpoints_for_workfeed":0.01,"P\\Tests\\Unit\\Workfeed\\WorkfeedRouteHelpersTest::__pest_evaluable_it_filters_request_parameters_down_to_the_allowed_workfeed_query_keys":0,"P\\Tests\\Unit\\Workfeed\\WorkfeedRouteWiringTest::__pest_evaluable_it_registers_employee_and_department_endpoints_for_the_workfeed_module":0.003,"P\\Tests\\Unit\\Workfeed\\WorkfeedRouteWiringTest::__pest_evaluable_it_registers_shift_endpoints_for_the_workfeed_module":0.003,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_calculates_workfeed_employee_hours_for_the_hour_slot_based_on_overlap":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_extracts_department_id_from_supported_workfeed_shift_shapes":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_normalizes_wrapped_workfeed_collections_from_common_response_keys":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTimelineSchemaConformanceTest::__pest_evaluable_it_includes_a_date_key_in_department_weather_timeline_entries":0.005,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTimelineSchemaConformanceTest::__pest_evaluable_it_documents_the_date_key_in_the_openapi_department_weather_timeline_schema":0.007,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTimelineRangeTest::__pest_evaluable_it_builds_a_timeline_range_from_start_of_yesterday_to_end_of_today":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTimelineRangeTest::__pest_evaluable_it_builds_a_timeline_range_relative_to_an_explicit_selected_date_override":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_calculates_workfeed_employee_hours_across_multiple_departments_for_one_hour_slot":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_normalizes_department_id_input_from_scalar_csv_and_nested_array_values":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTimelineRangeTest::__pest_evaluable_it_builds_a_timeline_range_relative_to_explicit_date__from_and_date__to_override":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTimelineRangeTest::__pest_evaluable_it_resolves_forecast_day_count_for_a_given_timeline_range_with_sane_limits":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherFallbackBehaviorTest::__pest_evaluable_it_resolves_weather_coordinates_from_valid_coordinates_only":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherFallbackBehaviorTest::__pest_evaluable_it_returns_null_weather_coordinates_when_all_department_locations_are_invalid":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherFallbackBehaviorTest::__pest_evaluable_it_classifies_weatherapi_no_matching_location_errors_as_location_lookup_failures":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherFallbackBehaviorTest::__pest_evaluable_it_does_not_classify_non_location_weatherapi_errors_as_location_lookup_failures":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherFallbackBehaviorTest::__pest_evaluable_it_returns_an_empty_forecast_fallback_when_coordinates_are_unavailable":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherFallbackBehaviorTest::__pest_evaluable_it_builds_timeline_entries_with_mostly__clear_weather_when_forecast_payload_is_empty":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherFallbackBehaviorTest::__pest_evaluable_it_wires_departments_weather_route_through_the_forecast_fallback_path":0.006,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherCacheHelpersTest::__pest_evaluable_it_uses_sane_ttl_defaults_and_clamps_negative_ttl_to_zero":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherCacheHelpersTest::__pest_evaluable_it_builds_deterministic_cache_keys_for_department_sets_and_timeline_ranges":0.001,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherCacheHelpersTest::__pest_evaluable_it_builds_order_insensitive_cache_keys_for_equivalent_department_id_sets":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherCacheHelpersTest::__pest_evaluable_it_falls_back_to_resolver_directly_when_cache_ttl_is_disabled":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTimelineRangeTest::__pest_evaluable_it_marks_non_started_slots_as_unknown_regardless_of_wash_hour_ratio":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherPreloadCronWiringTest::__pest_evaluable_it_registers_and_implements_cron_preloading_for_department_weather_cache":0.012,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherCacheHelpersTest::__pest_evaluable_it_uses_sane_stale_ttl_defaults_and_clamps_stale_ttl_below_fresh_ttl":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherCacheHelpersTest::__pest_evaluable_it_uses_sane_hot_activity_ttl_defaults_and_clamps_to_a_positive_value":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherCacheRuntimeBehaviorTest::__pest_evaluable_it_serves_fresh_cached_payloads_without_invoking_the_resolver":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherCacheRuntimeBehaviorTest::__pest_evaluable_it_serves_stale_cached_payloads_and_enqueues_a_refresh_signal":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherCacheRuntimeBehaviorTest::__pest_evaluable_it_recomputes_and_rewrites_cache_payloads_when_stale_window_is_exceeded":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherCacheRuntimeBehaviorTest::__pest_evaluable_it_records_hot_keys_order_insensitively_and_applies_preload_target_caps":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_normalizes_batched_wash_count_rows_into_hourly_slot_totals":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_wires_department_weather_route_to_use_batched_wash_aggregation":0.008,"P\\Tests\\Unit\\Orders\\AttachmentsListManyTest::__pest_evaluable_it_groups_attachments_by_object_id_and_preserves_empty_object_groups":0.001,"P\\Tests\\Unit\\Orders\\AttachmentsListManyTest::__pest_evaluable_it_keeps_listMany_payload_parity_with_list_for_one_object_id":0,"P\\Tests\\Unit\\Orders\\EconomicModuleOrdersBatchHelpersTest::__pest_evaluable_it_ensures_economic_module_rows_in_one_sanitized_batch":0,"P\\Tests\\Unit\\Orders\\EconomicModuleOrdersBatchHelpersTest::__pest_evaluable_it_returns_id_keyed_economic_module_payload_with_null_defaults":0,"P\\Tests\\Unit\\Orders\\OrdersRouteListBatchingWiringTest::__pest_evaluable_it_wires_GET__orders_through_batched_enrichment_and_stripe_snapshot_caching":0.005,"P\\Tests\\Unit\\Orders\\UsersCashierNamesBatchTest::__pest_evaluable_it_returns_cashier_names_from_cache_and_fetches_missing_ones_in_batch":0,"P\\Tests\\Unit\\Orders\\UsersCashierNamesBatchTest::__pest_evaluable_it_returns_deterministic_map_for_duplicate_and_unsorted_cashier_ids":0,"P\\Tests\\Unit\\Orders\\UsersCashierNamesBatchWiringTest::__pest_evaluable_it_implements_batched_cashier_name_lookup_with_cache_first_fallback_behavior":0.008,"P\\Tests\\Unit\\Orders\\UsersCashierNamesBatchWiringTest::__pest_evaluable_it_sanitizes_and_deduplicates_cashier_ids_before_batch_lookup":0.004,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_counts_overtime_minutes_when_a_shift_carries_an_extended_approval_end_timestamp":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_counts_unapproved_overtime_from_a_bounded_shift_updateTime_fallback":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_does_not_treat_late_unapproved_administrative_edits_as_overtime":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherCacheHelpersTest::__pest_evaluable_it_changes_weather_timeline_cache_key_when_department_weather_targets_change":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherStatusTargetsTest::__pest_evaluable_it_evaluates_healthy_degraded_and_unhealthy_statuses_from_configured_department_targets":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherStatusTargetsTest::__pest_evaluable_it_returns_unknown_when_configured_targets_are_missing_for_department_status_evaluation":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherStatusTargetsTest::__pest_evaluable_it_aggregates_multi_department_slot_statuses_using_worst_severity_and_unknown_fallback_rules":0.046,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTargetsOpenApiSpecTest::__pest_evaluable_it_documents_department_weather_target_endpoints_and_reusable_schemas_in_openapi":0.008,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTargetsOpenApiSpecTest::__pest_evaluable_it_documents_unknown_weather_status_behavior_when_targets_are_missing":0.009,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTargetsRouteWiringTest::__pest_evaluable_it_registers_department_weather_target_routes_with_explicit_read_and_manage_permissions":0.005,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTargetsRouteWiringTest::__pest_evaluable_it_persists_department_weather_targets_using_canonical_department_variable_keys":0.004,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_wires_machine_relay_status_get_and_set_endpoints":0.004,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_batches_sequential_machine_relay_status_requests_into_a_single_Shelly_get_call":0.001,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_respects_the_1_request_per_second_Shelly_gate_for_back_to_back_requests":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_retries_missing_Shelly_status_payloads_until_relay_status_becomes_ready":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_times_out_with_a_clear_Shelly_readiness_error_when_payload_remains_missing":0.001,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_uses_direct_set_switch_and_seeds_cache_so_immediate_status_read_does_not_call_Shelly_get":0,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_wires_self_serve_lane_gate_open_endpoint":0.003,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_wires_in_progress_self_serve_wash_details_endpoint":0.003,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_adds_vehicle_type_product_on_STOP_when_program_selector_is_on__then_turns_off_cleaner_machine_and_selector_relays":0.132,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_skips_vehicle_type_product_add_when_program_selector_is_off_and_only_disables_configured_relays":0.001,"P\\Tests\\Unit\\Selfserve\\DepartmentSelfServeEnabledRelaySyncWiringTest::__pest_evaluable_it_syncs_lane_relay_states_when_department_self_serve_enabled_flag_changes":0.006,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_supports_hard_relay_set_even_when_lane_status_is_CLOSED":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStartCleanerRelayWiringTest::__pest_evaluable_it_enables_cleaner_relay_on_wash_start_command_and_webhook_flow":0.01,"P\\Tests\\Unit\\Selfserve\\SelfserveWashCompletionRelayWiringTest::__pest_evaluable_it_forces_machine_relay_off_when_a_self_serve_wash_session_is_completed":0.003,"P\\Tests\\Unit\\Selfserve\\SelfserveLanePortControllerTest::__pest_evaluable_it_opens_exit_port_by_switching_relay__in__id_on":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLanePortControllerTest::__pest_evaluable_it_opens_entrance_port_by_switching_relay__out__id_on":0,"P\\Tests\\Unit\\Selfserve\\SelfserveOpenApiSpecTest::__pest_evaluable_it_documents_in_progress_self_serve_wash_start_and_machine_relay_fields":0.006,"P\\Tests\\Unit\\Selfserve\\SelfserveConditionEvaluatorTest::__pest_evaluable_it_evaluates_typed_task_gates_with_strict_semantics":0,"P\\Tests\\Unit\\Selfserve\\SelfserveConfigVersioningTest::__pest_evaluable_it_validates_typed_task_gates_for_known_references":0.001,"P\\Tests\\Unit\\Selfserve\\SelfserveConfigVersioningTest::__pest_evaluable_it_fails_validation_when_typed_task_gates_reference_unknown_entities":0,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_wires_self_serve_config_draft_publish_rollback_lifecycle_endpoints":0.004,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_keeps_legacy_self_serve_CRUD_routes_syncing_canonical_drafts":0.01,"P\\Tests\\Unit\\Selfserve\\SelfserveStartCleanerRelayWiringTest::__pest_evaluable_it_keeps_cleaner_relay_enable_wired_into_machine_relay_start_paths":0.011,"P\\Tests\\Unit\\Selfserve\\SelfserveConfigVersioningTest::__pest_evaluable_it_stores_config_json_with_apostrophes_without_violating_json_constraints":0.277,"P\\Tests\\Unit\\Selfserve\\SelfserveConfigVersioningTest::__pest_evaluable_it_encodes_config_json_payloads_with_apostrophes_before_persistence":0,"P\\Tests\\Unit\\Selfserve\\SelfserveWashCompletionRelayWiringTest::__pest_evaluable_it_forces_machine_and_cleaner_relays_off_when_a_self_serve_wash_session_is_completed":0.006,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_wires_vehicle_type_override_into_self_serve_preview_and_synchronization_routes":0.01,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_uses_local_demo_responses_and_skips_Shelly_cloud_calls_for_demo_relay_ids":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_returns_default_OFF_status_for_demo_relay_ids_without_Shelly_lookups":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_excludes_demo_relay_ids_from_Shelly_status_batch_payloads":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLanePortControllerTest::__pest_evaluable_it_keeps_demo_relay_gate_open_queued_but_skips_Shelly_switch_calls":0,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_wires_allowed_services_route_through_machine_relay_visibility_sync":0.003,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_enables_MACHINE_relay_when_MACHINE_is_visible_in_allowed_services":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_turns_MACHINE_relay_off_immediately_when_MACHINE_is_not_visible":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_does_not_enable_MACHINE_relay_when_allowEnable_is_false_even_if_MACHINE_is_visible":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_is_a_safe_no_op_when_MACHINE_relay_is_not_configured":0,"P\\Tests\\Unit\\Selfserve\\SelfserveRelayVisibilitySyncWiringTest::__pest_evaluable_it_synchronizes_machine_relay_from_visible_services_during_session_synchronization":0.012,"P\\Tests\\Unit\\Selfserve\\SelfserveRelayVisibilitySyncWiringTest::__pest_evaluable_it_adds_explicit_relay_disable_session_helper_for_visibility_driven_OFF_transitions":0.008,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_wires_self_serve_property_gate_command_permissions":0.01,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneCommandEnumTest::__pest_evaluable_it_parses_property_gate_lane_commands":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLanePropertyGateCommandTest::__pest_evaluable_it_opens_entrance_gate_for_OPEN__PROPERTY__ACCESS__GATE_command":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLanePropertyGateCommandTest::__pest_evaluable_it_opens_exit_gate_for_OPEN__PROPERTY__EXIT__GATE_command":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLanePropertyGateCommandTest::__pest_evaluable_it_blocks_property_gate_commands_when_department_self_serve_is_disabled":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLanePropertyGateCommandTest::__pest_evaluable_it_throws_a_clear_error_when_entrance_gate_is_missing_for_property_access_command":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLanePropertyGateCommandTest::__pest_evaluable_it_wraps_low_level_gate_errors_for_property_access_command_failures":0.005,"P\\Tests\\Unit\\Selfserve\\SelfserveWashFlowMachineAllowedWiringTest::__pest_evaluable_it_reads_machine_allowed_state_from_session_summary_payload_safely":0.008,"P\\Tests\\Unit\\Selfserve\\DbObjectPaginationLegacyColumnCompatibilityTest::__pest_evaluable_it_guards_pagination_against_searchable_fields_missing_from_legacy_schemas":0.004,"P\\Tests\\Unit\\Selfserve\\SelfserveSchemaBootstrapCompatibilityTest::__pest_evaluable_it_adds_dynamic__images__vehicle__type_column_for_legacy_selfserve_wash_session_task_schemas":0.005,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneInvoiceIncludedMinutesTest::__pest_evaluable_it_computes_billable_minutes_when_elapsed_minutes_exceed_included_minutes":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneInvoiceIncludedMinutesTest::__pest_evaluable_it_computes_zero_billable_minutes_when_elapsed_minutes_equal_included_minutes":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneInvoiceIncludedMinutesTest::__pest_evaluable_it_computes_zero_billable_minutes_when_included_minutes_exceed_elapsed_minutes":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneInvoiceIncludedMinutesTest::__pest_evaluable_it_handles_zero_and_low_elapsed_wash_time_edge_cases":0,"P\\Tests\\Unit\\Selfserve\\SelfserveOpenApiSpecTest::__pest_evaluable_it_documents_self_serve_machine_wash_included_minutes_in_config_schemas":0.007,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_wires_machine_wash_included_minutes_into_self_serve_module_config":0.011,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_blocks_explicit_relay_writes_when_department_self_serve_is_disabled":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_returns_disabled_no_op_from_machine_relay_visibility_sync_when_department_self_serve_is_disabled":0,"P\\Tests\\Unit\\Selfserve\\SelfserveOpenApiSpecTest::__pest_evaluable_it_documents_property_gate_lane_commands_and_sanitized_gate_failure_responses":0.008,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_fails_fast_when_workspace_id_is_missing_for_gate_calls":0.044,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_fails_fast_when_channel_id_is_missing_for_gate_calls":0,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_fails_with_terminal_status_details_when_call_never_reaches_accepted_state":0.07,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_hangs_up_when_call_reaches_accepted_state":0,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_hangs_up_immediately_when_status_transitions_to_accepted":0,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_maps_legacy_timeout_option_to_documented_ringTimeout_payload_field":0,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_clamps_derived_ringTimeout_to_Bird_documented_max_when_gate_timeout_is_high":0,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_passes_documented_hangup_cause_when_provided":0,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_drops_unsupported_hangup_cause_values_from_request_payload":0,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_fails_fast_when_workspace_id_is_missing_for_gate_flash_calls":0,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_creates_gate_flash_call_with_documented_ringTimeout_payload":0,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_polls_flash_call_and_succeeds_once_accepted":0,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_fails_flash_gate_flow_when_terminal_failure_status_is_returned":0,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_does_not_fallback_to_regular_gate_call_when_flash_succeeds":0,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_falls_back_to_regular_gate_call_when_flash_fails":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLanePropertyGateCommandTest::__pest_evaluable_it_wraps_low_level_gate_errors_for_property_exit_command_failures":0.003,"P\\Tests\\Unit\\Bird\\BirdGateCallFlowTest::__pest_evaluable_it_falls_back_to_regular_gate_call_when_flash_caller_id_is_not_confirmed":0,"P\\Tests\\Unit\\Bird\\BirdModuleClientMappingTest::__pest_evaluable_it_maps_voice_call_facade_methods_to_documented_endpoints_and_methods":0.026,"P\\Tests\\Unit\\Bird\\BirdModuleClientMappingTest::__pest_evaluable_it_maps_recordings_insights_log_and_flash_methods_to_documented_resources":0,"P\\Tests\\Unit\\Bird\\BirdModuleClientMappingTest::__pest_evaluable_it_encodes_path_segments_before_building_outbound_endpoints":0,"P\\Tests\\Unit\\Bird\\BirdModuleClientMappingTest::__pest_evaluable_it_serializes_query_parameters_for_GET_transport_requests":0,"P\\Tests\\Unit\\Bird\\BirdModuleClientMappingTest::__pest_evaluable_it_maps_4xx_and_5xx_transport_failures_into_informative_exceptions":0,"P\\Tests\\Unit\\Bird\\BirdModuleClientMappingTest::__pest_evaluable_it_returns_raw_payload_for_malformed_JSON_responses_and_null_for_empty_responses":0.007,"P\\Tests\\Unit\\Bird\\BirdOpenApiSpecTest::__pest_evaluable_it_documents_all_Bird_voice_call_parity_endpoints_including_gather_recordings_insights_and_log":0.007,"P\\Tests\\Unit\\Bird\\BirdOpenApiSpecTest::__pest_evaluable_it_documents_flash_hangup_endpoint_and_marks_end_alias_as_deprecated":0.007,"P\\Tests\\Unit\\Bird\\BirdOpenApiSpecTest::__pest_evaluable_it_defines_request_and_response_schemas_for_Bird_call_command_recording_insight_log_and_flash_payloads":0.008,"P\\Tests\\Unit\\Bird\\BirdRequestValidationTest::__pest_evaluable_it_accepts_valid_payloads_for_create_and_nested_call_flow_commands":0,"P\\Tests\\Unit\\Bird\\BirdRequestValidationTest::__pest_evaluable_it_rejects_unknown_fields_and_invalid_enum_values_in_strict_schemas":0.008,"P\\Tests\\Unit\\Bird\\BirdRequestValidationTest::__pest_evaluable_it_supports_CSV_normalization_in_schema_validation_for_log_filters":0,"P\\Tests\\Unit\\Bird\\BirdRequestValidationTest::__pest_evaluable_it_validates_flash_hangup_payloads_for_both_supported_request_shapes":0,"P\\Tests\\Unit\\Bird\\BirdRequestValidationTest::__pest_evaluable_it_fails_before_forward_step_when_strict_validation_fails_and_forwards_when_valid":0,"P\\Tests\\Unit\\Bird\\BirdRouteWiringTest::__pest_evaluable_it_registers_full_Bird_voice_call_route_surface_with_strict_validation_and_permissions":0.005,"P\\Tests\\Unit\\Bird\\BirdRouteWiringTest::__pest_evaluable_it_registers_flash_hangup_endpoint_and_keeps_end_alias_wired_as_compatibility_path":0.004,"P\\Tests\\Unit\\Bird\\BirdRouteWiringTest::__pest_evaluable_it_keeps_Bird_number_and_webhook_routes_intact":0.006,"P\\Tests\\Unit\\Bird\\BirdModuleClientMappingTest::__pest_evaluable_it_handles_malformed_and_empty_response_bodies_without_throwing_transport_errors":0.005,"P\\Tests\\Unit\\Selfserve\\DepartmentGatesRelaysRouteWiringTest::__pest_evaluable_it_validates_department_gate_config_on_both_create_and_update_routes":0.004,"P\\Tests\\Unit\\Selfserve\\SelfserveSchemaBootstrapCompatibilityTest::__pest_evaluable_it_adds_wash__started__at_column_for_legacy_selfserve_wash_session_schemas":0.004,"P\\Tests\\Unit\\Selfserve\\SelfserveWashStartedAtWiringTest::__pest_evaluable_it_stores_wash__started__at_in_self_serve_wash_sessions_when_machine_start_is_triggered":0.006,"P\\Tests\\Unit\\Selfserve\\SelfserveWashStartedAtWiringTest::__pest_evaluable_it_passes_lane_wash_start_time_into_the_session_machine_start_marker":0.006,"P\\Tests\\Unit\\Selfserve\\SelfserveWashStartedAtWiringTest::__pest_evaluable_it_resolves_in_progress_wash__started__at_from_session_with_compatibility_fallbacks":0.003,"P\\Tests\\Unit\\Bird\\BirdPayloadClassesTest::__pest_evaluable_it_normalizes_say_payload_and_applies_hangup_default":0.02,"P\\Tests\\Unit\\Bird\\BirdPayloadClassesTest::__pest_evaluable_it_normalizes_log_query_csv_and_integer_fields":0,"P\\Tests\\Unit\\Bird\\BirdPayloadClassesTest::__pest_evaluable_it_normalizes_nested_create_call_payload_sections_and_drops_unknown_keys":0,"P\\Tests\\Unit\\Bird\\BirdPayloadClassesTest::__pest_evaluable_it_keeps_gather_nested_say_payload_unchanged_when_hangup_is_omitted":0,"P\\Tests\\Unit\\Bird\\BirdPayloadClassesTest::__pest_evaluable_it_supports_no_body_and_flash_hangup_payload_normalization":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_respects_the_2_second_Shelly_gate_for_back_to_back_requests":0.023,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_enforces_a_2_second_gap_between_sequential_switch_requests_used_by_wash_start_and_stop_flows":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_keeps_back_to_back_get_switch_requests_ordered_through_the_relay_controller":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_executes_sequential_switch_requests_used_by_wash_start_and_stop_flows":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLanePortControllerTest::__pest_evaluable_it_does_not_print_Shelly_switch_responses_to_output":0,"P\\Tests\\Unit\\Selfserve\\ShellyGlobalRateLimitWiringTest::__pest_evaluable_it_enforces_a_global_2_second_Shelly_gate_in_sendPostRequest":0.005,"P\\Tests\\Unit\\Selfserve\\ShellyGlobalRateLimitWiringTest::__pest_evaluable_it_uses_Redis_NX_PX_semantics_for_cross_request_Shelly_rate_limiting":0.003,"P\\Tests\\Unit\\Selfserve\\ShellyGlobalRateLimitBehaviorTest::__pest_evaluable_it_enforces_the_2_second_Shelly_gate_across_separate_request_contexts":0,"P\\Tests\\Unit\\Selfserve\\ShellyGlobalRateLimitBehaviorTest::__pest_evaluable_it_does_not_delay_when_the_Shelly_gate_is_already_expired":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_adds_vehicle_type_product_on_STOP_when_program_selector_relay_is_online__then_turns_off_cleaner_and_machine_relays":0.62,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_skips_vehicle_type_product_add_when_program_selector_relay_is_offline_and_only_disables_configured_relays":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_bills_primary_product_when_selector_relay_is_online_even_if_relay_output_is_off":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneInvoiceModeBillingTest::__pest_evaluable_it_bills_manual_self_serve_stop_using_full_elapsed_minutes_without_included_minute_reduction":0.001,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneInvoiceModeBillingTest::__pest_evaluable_it_keeps_included_minute_reduction_for_automatic_mode":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_sends_Slack_on_first_dtmf_input_captured_within_the_300_second_window":0.005,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_does_not_send_Slack_when_dtmf_input_repeats_without_change":0.008,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_sends_Slack_again_when_dtmf_input_changes_within_the_window":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_keeps_gathering_and_does_not_hang_up_before_300_seconds_have_elapsed":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_announces_timeout_waits_10_seconds_and_sends_hangup_once_at_or_after_300_seconds":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_keeps_polling_until_terminal_status_and_only_then_finalizes":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_finalizes_immediately_when_webhook_payload_is_already_terminal_before_timeout_logic":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_does_not_duplicate_timeout_or_hangup_actions_across_retries_and_lock_contention":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_keeps_state_when_polling_fails_so_completion_is_not_falsely_reported":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_sends_Slack_when_dtmf_input_repeats_without_change":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_answers_immediately_once_and_does_not_re_answer_on_subsequent_webhook_retries":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_configures_gather_with_retry_loop_semantics_until_input_is_entered":0.004,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_sends_Slack_when_gather_result_provides_keys_field_instead_of_dtmf":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_sends_Slack_when_gather_conditions_variable_keys_carries_the_entered_value":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_configures_gather_to_check_every_2_seconds_with_retry_loop_semantics_until_input_is_entered":0,"P\\Tests\\Unit\\Users\\UsersAutomaticGetTargetUserFromRequestTest::__pest_evaluable_it_ignores_non_numeric_customer__number_values_from_request":0.042,"P\\Tests\\Unit\\Users\\UsersAutomaticGetTargetUserFromRequestTest::__pest_evaluable_it_casts_numeric_customer__number_strings_to_int_before_lookup":0,"P\\Tests\\Unit\\Users\\UsersAutomaticGetTargetUserFromRequestTest::__pest_evaluable_it_prefers_user__id_when_both_user__id_and_customer__number_are_valid":0,"P\\Tests\\Unit\\Users\\UsersAutomaticGetTargetUserFromRequestTest::__pest_evaluable_it_falls_back_to_customer__number_when_user__id_is_invalid":0,"P\\Tests\\Unit\\Users\\UsersAutomaticGetTargetUserFromRequestTest::__pest_evaluable_it_normalizes_request_identifiers_before_user_lookups":0.004,"P\\Tests\\Unit\\Users\\UsersAutomaticGetTargetUserFromRequestTest::__pest_evaluable_it_rejects_non_positive_and_non_digit_request_values":0.004,"P\\Tests\\Unit\\Invoicing\\CustomerSearchRoutePaginationFallbackTest::__pest_evaluable_it_uses_pagination_results_when_present":0.006,"P\\Tests\\Unit\\Invoicing\\CustomerSearchRoutePaginationFallbackTest::__pest_evaluable_it_falls_back_to_collection_count_when_pagination_metadata_is_missing":0,"P\\Tests\\Unit\\Invoicing\\CustomerSearchRoutePaginationFallbackTest::__pest_evaluable_it_returns_zero_when_neither_pagination_nor_collection_is_available":0,"P\\Tests\\Unit\\Invoicing\\CustomerSearchRoutePaginationFallbackTest::__pest_evaluable_it_counts_object_based_collections_when_pagination_metadata_is_missing":0,"P\\Tests\\Unit\\Invoicing\\EconomicPaymentTermsRouteCollectionExtractionTest::__pest_evaluable_it_uses_collection_when_present":0,"P\\Tests\\Unit\\Invoicing\\EconomicPaymentTermsRouteCollectionExtractionTest::__pest_evaluable_it_falls_back_to_paymentTerms_when_collection_is_missing":0,"P\\Tests\\Unit\\Invoicing\\EconomicPaymentTermsRouteCollectionExtractionTest::__pest_evaluable_it_supports_top_level_array_payloads":0,"P\\Tests\\Unit\\Invoicing\\EconomicPaymentTermsRouteCollectionExtractionTest::__pest_evaluable_it_returns_an_empty_array_when_no_known_collection_shape_exists":0,"P\\Tests\\Unit\\Invoicing\\EconomicAuthTokenFallbackTest::__pest_evaluable_it_uses_grant__2_in_economic__endpoint__t_when_explicitly_requested_and_configured":0,"P\\Tests\\Unit\\Invoicing\\EconomicAuthTokenFallbackTest::__pest_evaluable_it_falls_back_to_grant__1_in_economic__endpoint__t_when_grant__2_is_missing":0.002,"P\\Tests\\Unit\\Invoicing\\EconomicAuthTokenFallbackTest::__pest_evaluable_it_throws_for_missing_required_primary_grant_in_economic__endpoint__t":0.002,"P\\Tests\\Unit\\Invoicing\\EconomicAuthTokenFallbackTest::__pest_evaluable_it_throws_for_missing_app_secret_in_economic__endpoint__t":0,"P\\Tests\\Unit\\Invoicing\\EconomicAuthTokenFallbackTest::__pest_evaluable_it_uses_grant__2_in_legacy_economic__m_when_available":0,"P\\Tests\\Unit\\Invoicing\\EconomicAuthTokenFallbackTest::__pest_evaluable_it_falls_back_to_grant__1_in_legacy_economic__m_when_grant__2_is_missing":0.002,"P\\Tests\\Unit\\Invoicing\\EconomicAuthTokenFallbackTest::__pest_evaluable_it_throws_for_missing_required_primary_grant_in_legacy_economic__m":0.002,"P\\Tests\\Unit\\Invoicing\\EconomicAuthTokenFallbackTest::__pest_evaluable_it_throws_for_missing_app_secret_in_legacy_economic__m":0,"P\\Tests\\Unit\\Invoicing\\CustomerSearchRoutePaginationFallbackTest::__pest_evaluable_it_uses_unfiltered_total_when_no_customer_filters_are_active":0.004,"P\\Tests\\Unit\\Invoicing\\CustomerSearchRoutePaginationFallbackTest::__pest_evaluable_it_uses_filtered_total_when_search_is_active":0,"P\\Tests\\Unit\\Invoicing\\CustomerSearchRoutePaginationFallbackTest::__pest_evaluable_it_uses_filtered_total_when_barred_filter_is_active":0,"P\\Tests\\Unit\\Invoicing\\CustomerSearchRoutePaginationFallbackTest::__pest_evaluable_it_treats__null__search_and_barred_values_as_no_filter":0,"P\\Tests\\Unit\\Invoicing\\CustomerSearchRoutePaginationFallbackTest::__pest_evaluable_it_falls_back_to_filtered_total_when_unfiltered_total_is_missing":0,"P\\Tests\\Unit\\Invoicing\\CustomerSearchRouteEconomicFailureHandlingTest::__pest_evaluable_it_maps_e_conomic_integration_failures_in_customer_listing_to_explicit_502_responses":0.003,"P\\Tests\\Unit\\Invoicing\\CustomerSearchRouteEconomicFailureHandlingTest::__pest_evaluable_it_logs_LIST__CUSTOMERS_success_only_after_pagination_and_customer_mapping_are_completed":0.003,"P\\Tests\\Unit\\Invoicing\\CustomerSearchRouteEconomicFailureHandlingTest::__pest_evaluable_it_guards_against_malformed_customer_list_payloads_before_calling_paginate":0.002,"P\\Tests\\Unit\\Invoicing\\EconomicAuthTokenFallbackTest::__pest_evaluable_it_throws_deterministic_upstream_exceptions_for_non_2xx_endpoint_trait_responses":0,"P\\Tests\\Unit\\Invoicing\\EconomicAuthTokenFallbackTest::__pest_evaluable_it_throws_deterministic_upstream_exceptions_for_non_2xx_legacy_economic__m_responses":0,"P\\Tests\\Unit\\Invoicing\\EconomicAuthTokenFallbackTest::__pest_evaluable_it_returns_raw_payload_unchanged_on_successful_HTTP_statuses":0,"P\\Tests\\Unit\\Invoicing\\EconomicCustomersListResponseValidationTest::__pest_evaluable_it_accepts_valid_list_payloads_that_include_collection_and_pagination_results":0,"P\\Tests\\Unit\\Invoicing\\EconomicCustomersListResponseValidationTest::__pest_evaluable_it_throws_when_pagination_is_missing_from_the_response_payload":0,"P\\Tests\\Unit\\Invoicing\\EconomicCustomersListResponseValidationTest::__pest_evaluable_it_throws_when_upstream_responds_with_an_error_shaped_payload":0,"P\\Tests\\Unit\\Router\\RouterThrowableHandlingTest::__pest_evaluable_it_catches_throwables_during_auto_route_loading_and_maps_them_to_internal_server_errors":0.006,"P\\Tests\\Unit\\Users\\EconomicCustomerZeroHandlingTest::__pest_evaluable_it_does_not_request_e_conomic_customer_data_when_customer_number_is_zero":0.004,"P\\Tests\\Unit\\Users\\EconomicCustomerZeroHandlingTest::__pest_evaluable_it_short_circuits_e_conomic_customer_lookup_for_non_positive_customer_numbers":0.008,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueRouteRegistrationTest::__pest_evaluable_it_registers_queued_economic_invoice_endpoints_in_economicInvoiceRoute":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueRouteRegistrationTest::__pest_evaluable_it_registers_collected_invoice_queue_endpoints_in_orderInvoicesRoute":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueSchemaBootstrapTest::__pest_evaluable_it_defines_economic_transfer_queue_jobs_schema_bootstrap_table_and_tracking_columns":0.005,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueSchemaBootstrapTest::__pest_evaluable_it_provides_queue_processor_class_constants_and_processing_entrypoint":0.003,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueCronIntegrationTest::__pest_evaluable_it_registers_economic_transfer_queue_cron_task_and_handler":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueOpenApiSpecTest::__pest_evaluable_it_documents_economic_transfer_queue_paths_in_openapi":0.008,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueOpenApiSpecTest::__pest_evaluable_it_documents_economic_transfer_queue_schemas_in_openapi":0.009,"P\\Tests\\Unit\\Invoicing\\EconomicTransferOrderItemSkipTest::__pest_evaluable_it_skips_order_items_with_zero_quantity_for_e_conomic_export":0,"P\\Tests\\Unit\\Invoicing\\EconomicTransferOrderItemSkipTest::__pest_evaluable_it_skips_order_items_with_zero_price_for_e_conomic_export":0,"P\\Tests\\Unit\\Invoicing\\EconomicTransferOrderItemSkipTest::__pest_evaluable_it_keeps_positive_quantity_and_price_items_billable_for_e_conomic_export":0,"P\\Tests\\Unit\\Invoicing\\EconomicTransferOrderItemSkipTest::__pest_evaluable_it_wires_zero_cost_and_zero_quantity_skip_guard_into_transfer_line_builder":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicInvoiceDraftZeroItemSkipWiringTest::__pest_evaluable_it_skips_zero_cost_and_zero_quantity_items_in_legacy_economic_draft_helper":0.008,"P\\Tests\\Unit\\Invoicing\\EconomicTransferOrderItemSkipTest::__pest_evaluable_it_skips_malformed_order_item_payloads_for_e_conomic_export_safety":0,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueHardeningTest::__pest_evaluable_it_hardens_transfer_queue_with_type_validation_retry_caps_and_stale_lock_recovery":0.004,"P\\Tests\\Unit\\Router\\AutoloadRedisCacheValidationTest::__pest_evaluable_it_validates_cached_autoload_paths_before_returning_and_clears_stale_cache_entries":0.002,"P\\Tests\\Unit\\Orders\\OrdersRegistrationDateRangeQueryTest::__pest_evaluable_it_applies_created__at_bounds_directly_in_SQL_when_filtering_orders_by_registration_number":0.001,"P\\Tests\\Unit\\Orders\\OrdersRegistrationDateRangeQueryTest::__pest_evaluable_it_rejects_an_inverted_date_range_for_registration_lookups":0,"P\\Tests\\Unit\\Orders\\OrdersRegistrationDateRangeQueryTest::__pest_evaluable_it_returns_early_when_registration_number_is_blank":0,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueCronIntegrationTest::__pest_evaluable_it_wires_queue_worker_class_loading_for_CLI_queue_action":0.003,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueAvailabilityGuardTest::__pest_evaluable_it_guards_all_economic_invoice_queue_endpoints_before_constructing_queue_service":0.012,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueAvailabilityGuardTest::__pest_evaluable_it_guards_all_collected_invoice_queue_endpoints_before_constructing_queue_service":0.011,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueAvailabilityGuardTest::__pest_evaluable_it_uses_a_consistent_unavailable_service_contract_for_missing_queue_dependencies":0.009,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueAvailabilityGuardTest::__pest_evaluable_it_gracefully_handles_unavailable_queue_dependencies_on_collected_invoice_queue_endpoints":0.005,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceEconomicQueueResponseContractTest::__pest_evaluable_it_returns_the_queue_job_id_in_POST__collected_invoices_economic_enqueue_response":0.204,"P\\Tests\\Unit\\Invoicing\\UserCollectedInvoiceUpdateRouteValidationTest::__pest_evaluable_it_requires_id_and_at_least_one_mutable_field_for_PUT__collected_invoices_in_user_route":0.005,"P\\Tests\\Unit\\Invoicing\\UserCollectedInvoiceUpdateRouteValidationTest::__pest_evaluable_it_supports_independent_po__number_and_closed__at_updates_for_PUT__collected_invoices_in_user_route":0.003,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceEconomicQueueResponseContractTest::__pest_evaluable_it_returns_queued_contract_for_POST__collected_invoices_stripe_book":0.002,"P\\Tests\\Unit\\Invoicing\\EconomicDraftQueueOnlyRouteBehaviorTest::__pest_evaluable_it_keeps_order_draft_export_route_queue_only":0.006,"P\\Tests\\Unit\\Invoicing\\EconomicDraftQueueOnlyRouteBehaviorTest::__pest_evaluable_it_keeps_collected_invoice_draft_producing_routes_queue_only_in_orderInvoicesRoute":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueAvailabilityGuardTest::__pest_evaluable_it_guards_collected_invoice_and_stripe_draft_producing_endpoints_before_constructing_queue_service":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueOpenApiSpecTest::__pest_evaluable_it_documents_unavailable_queue_dependency_responses_for_async_economic_transfer_endpoints":0.007,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueuePayloadValidationTest::__pest_evaluable_it_normalizes_order_payloads_to_strict_positive_integer_ids":0,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueuePayloadValidationTest::__pest_evaluable_it_normalizes_collected_invoice_payload_booleans_to_strict_bool_values":0,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueuePayloadValidationTest::__pest_evaluable_it_rejects_invalid_transfer_payloads_before_enqueue_write_attempts":0,"P\\Tests\\Integration\\Invoicing\\EconomicTransferQueueIntegrationTest::__pest_evaluable_it_processes_queued_transfer_jobs_to_completion":0.016,"P\\Tests\\Integration\\Invoicing\\EconomicTransferQueueIntegrationTest::__pest_evaluable_it_deduplicates_active_jobs_per_transfer_target":0.016,"P\\Tests\\Integration\\Invoicing\\EconomicTransferQueueIntegrationTest::__pest_evaluable_it_rejects_invalid_payloads_without_inserting_queue_rows":0.013,"P\\Tests\\Integration\\Invoicing\\EconomicTransferQueueIntegrationTest::__pest_evaluable_it_supports_fail_retry_and_reprocess_lifecycle_transitions":0.014,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueAvailabilityGuardTest::__pest_evaluable_it_keeps_queue_guards_on_economic_invoice_queue_status_and_retry_routes":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueAvailabilityGuardTest::__pest_evaluable_it_supports_synchronous_fallback_branches_before_queue_enqueue_on_economic_invoice_export_routes":0.003,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueAvailabilityGuardTest::__pest_evaluable_it_keeps_queue_status_endpoints_guarded_while_collected_invoice_export_routes_support_synchronous_fallback":0.005,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueAvailabilityGuardTest::__pest_evaluable_it_uses_a_consistent_unavailable_service_contract_for_queue_status_lifecycle_endpoints":0.007,"P\\Tests\\Unit\\Invoicing\\EconomicDraftQueueOnlyRouteBehaviorTest::__pest_evaluable_it_supports_synchronous_fallback_and_queued_processing_for_order_draft_export_route":0.005,"P\\Tests\\Unit\\Invoicing\\EconomicDraftQueueOnlyRouteBehaviorTest::__pest_evaluable_it_supports_synchronous_fallback_and_queued_processing_for_collected_invoice_draft_producing_routes":0.004,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceEconomicQueueResponseContractTest::__pest_evaluable_it_documents_both_synchronous_fallback_and_queued_response_contracts_for_POST__collected_invoices_economic":0.019,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceEconomicQueueResponseContractTest::__pest_evaluable_it_documents_both_synchronous_fallback_and_queued_response_contracts_for_POST__collected_invoices_stripe_book":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueOpenApiSpecTest::__pest_evaluable_it_documents_200_fallback_plus_202_queue_contracts_for_export_endpoints_and_keeps_503_on_queue_lifecycle_endpoints":0.008,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueRouteHardeningTest::__pest_evaluable_it_returns_pagination_metadata_and_strict_status_handling_for_collected_invoice_queue_list":0.004,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueRouteHardeningTest::__pest_evaluable_it_enforces_retry_constraints_for_collected_invoice_queue_jobs_before_retry_execution":0.003,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueOpenApiSpecTest::__pest_evaluable_it_documents_collected_queue_list_metadata_and_strict_status_filter_enum_in_openapi":0,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueDetailsSummaryBuilderTest::__pest_evaluable_it_builds_a_completed_collected_invoice_queue_summary_from_payload_and_result":0.004,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueDetailsSummaryBuilderTest::__pest_evaluable_it_prefers_queue_error_messages_for_failed_jobs_and_keeps_null_safe_outcome_fields":0,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueDetailsSummaryBuilderTest::__pest_evaluable_it_uses_deterministic_status_message_fallback_when_no_explicit_message_exists":0,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueDetailsSummaryBuilderTest::__pest_evaluable_it_handles_object_payload_result_values_and_malformed_fields_without_throwing":0,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueWorkerTickRouteTest::__pest_evaluable_it_ticks_collected_invoice_transfer_queue_from_queue_list_and_status_routes":0.008,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueWorkerTickRouteTest::__pest_evaluable_it_ticks_order_transfer_queue_from_draft_and_invoice_status_routes":0.009,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodQueueOverlayTest::__pest_evaluable_it_marks_queued_transactions_and_clears_requires__action_when_all_actionable_work_is_already_queued":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodQueueOverlayTest::__pest_evaluable_it_keeps_requires__action_true_when_a_customer_still_has_unqueued_actionable_transactions":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodQueueOverlayTest::__pest_evaluable_it_blocks_fixed_pricing_or_subscription_customers_with_no_transactions_when_a_relevant_queue_job_exists":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerCommandQueueTest::__pest_evaluable_it_queues_admin_commands__exposes_agent_poll_result_handlers__and_keeps_heartbeats_from_mutating_discovery_state":0.003,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerCommandQueueTest::__pest_evaluable_it_defines_the_dispatchable_gateway_guard_on_the_loaded_manager_class":0.009,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerHeartbeatStatusTest::__pest_evaluable_it_derives_effective_gateway_status_from_heartbeat_freshness with data set \"dataset \"recent heartbeat stays online\"\"":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerHeartbeatStatusTest::__pest_evaluable_it_derives_effective_gateway_status_from_heartbeat_freshness with data set \"dataset \"late heartbeat degrades after one minute\"\"":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerHeartbeatStatusTest::__pest_evaluable_it_derives_effective_gateway_status_from_heartbeat_freshness with data set \"dataset \"stale heartbeat goes offline after five minutes\"\"":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerHeartbeatStatusTest::__pest_evaluable_it_derives_effective_gateway_status_from_heartbeat_freshness with data set \"dataset \"explicit offline reports stay offline even when heartbeat is fresh\"\"":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerHeartbeatStatusTest::__pest_evaluable_it_derives_effective_gateway_status_from_heartbeat_freshness with data set \"dataset \"missing heartbeat is treated as offline\"\"":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerHeartbeatStatusTest::__pest_evaluable_it_marks_ready_discovery_as_stale_when_the_gateway_heartbeat_has_expired":0.351,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayRouteWiringTest::__pest_evaluable_it_registers_the_edge_gateway_management_REST_endpoints":0.021,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayRouteWiringTest::__pest_evaluable_it_registers_public_installer__claim__heartbeat__command_polling__and_internal_broker_auth_endpoints":0.004,"P\\Tests\\Unit\\Selfserve\\EdgeBrokerClientConfigTest::__pest_evaluable_it_uses_the_same_default_broker_url_and_shared_secret_fallback_as_the_docker_stack":0.267,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_builds_install_script_urls_with_forwarded_https_scheme_when_proxied":0.336,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_appends_forwarded_ports_when_the_forwarded_host_omits_them":0.123,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_infers_https_for_the_staging_api_host_when_only_the_https_port_is_present":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_prefers_EDGE__PUBLIC__API__URL_when_explicitly_configured":0.443,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_normalizes_public_broker_overrides_to_https_and_browser_shell_urls_to_wss":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_keeps_localhost_broker_overrides_on_plain_http_and_ws_for_local_development":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_includes_node_pty_build_prerequisites_in_the_generated_install_script":0.007,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_prefers_EDGE__PUBLIC__API__URL_when_explicitly_configured_and_derives_the_broker_from_the_api_origin":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_normalizes_public_broker_overrides_to_https__strips_paths__and_browser_shell_urls_to_wss":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerHeartbeatStatusTest::__pest_evaluable_it_merges_incoming_heartbeat_metadata_with_existing_gateway_metadata":0.006,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayRouteWiringTest::__pest_evaluable_it_registers_the_v2_operator_facing_edge_gateway_routes":0.005,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayRouteWiringTest::__pest_evaluable_it_registers_PHP_edge_agent_routes_for_operations_and_legacy_relay_command_polling":0.017,"P\\Tests\\Unit\\Selfserve\\EdgeGatewaySchemaBootstrapTest::__pest_evaluable_it_defines_the_v2_edge_gateway_schema_bootstrap_tables":0.005,"P\\Tests\\Unit\\Selfserve\\EdgeGatewaySchemaBootstrapTest::__pest_evaluable_it_stores_operation_metadata_and_event_timelines_for_management_workflows":0.004,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayUpdateLifecycleTest::__pest_evaluable_it_builds_the_installer_around_the_PHP_agent_artifacts_and_management_polling_config":0.011,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayUpdateLifecycleTest::__pest_evaluable_it_exposes_update_payload__credential_rotation__and_operation_endpoints_without_shell_transport_wiring":0.013,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerCommandQueueTest::__pest_evaluable_it_keeps_relay_dispatch_and_discovery_queueing_on_the_edge_gateway_manager":0.023,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerCommandQueueTest::__pest_evaluable_it_loads_relay_command_helpers_on_the_manager_and_gateway_operations_on_the_dedicated_service":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerHeartbeatStatusTest::__pest_evaluable_it_derives_relay_fallback_and_transport_health_details_without_shell_or_update_runtime_state":0.343,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayArtifactLocatorTest::__pest_evaluable_it_resolves_edge_agent_artifacts_from_the_source_tree_layout":0.445,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayArtifactLocatorTest::__pest_evaluable_it_includes_the_container_mounted_artifact_directory_as_a_candidate":0.021,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayArtifactLocatorTest::__pest_evaluable_it_reads_install_artifacts_through_the_shared_locator":0.009,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayArtifactLocatorTest::__pest_evaluable_it_builds_update_payloads_with_checksums_from_resolved_artifact_paths":0.35,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayArtifactLocatorTest::__pest_evaluable_it_resolves_edge_agent_artifacts_from_a_supported_runtime_layout":0.025,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_builds_install_script_urls_with_the_PHP_agent_artifacts_and_forwarded_https_scheme":0.001,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayArtifactLocatorTest::__pest_evaluable_it_explains_the_legacy_dist_mount_mismatch_when_php_artifacts_are_unavailable":0.001,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayArtifactLocatorTest::__pest_evaluable_it_prioritizes_mounted_and_baked_in_artifact_directories_before_repo_fallbacks":0.022,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayArtifactLocatorTest::__pest_evaluable_it_falls_back_to_baked_in_artifacts_when_the_mount_path_is_absent":0.001,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayArtifactLocatorTest::__pest_evaluable_it_prioritizes_router_resources_before_mounted_and_baked_in_artifact_directories":0,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_lists_orders_for_an_admin_scoped_user_and_limits_the_results_to_the_permitted_departments":1.109,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_lists_only_the_targeted_customer_orders_for_subuser_sessions":2.935,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_returns_the_current_auth_and_permission_failures_when_order_listing_is_not_allowed":1.375,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_creates_orders_through_the_real_endpoint":0.982,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_rejects_invalid_order_creation_requests":3.423,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_updates_orders_through_the_primary_endpoint":1.13,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_reassigns_invoice_collections_when_changing_an_order_across_the_draft_customer_boundary":1.615,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_supports_legacy_field_value_metadata_updates_through_the_primary_endpoint":5.592,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_rejects_invalid_updates_through_the_primary_order_endpoint":1.29,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_updates_orders_through_the_legacy_alias_endpoint":1.517,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_supports_legacy_field_value_metadata_updates_through_the_alias_endpoint":4.136,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_rejects_invalid_updates_through_the_legacy_alias_endpoint":0.512,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_rejects_unsupported_legacy_field_value_updates_on_both_update_endpoints":0.965,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_deletes_orders_through_the_real_endpoint":1.045,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_rejects_invalid_order_delete_requests":1.64,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_regenerates_attached_wash_certificates_when_certificate_metadata_changes_through_the_primary_endpoint":3.683,"P\\Tests\\Api\\OrdersApiTest::__pest_evaluable_it_regenerates_attached_wash_certificates_for_legacy_field_value_updates_through_the_alias_endpoint":3.194,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayOperationLegacySchemaCompatibilityTest::__pest_evaluable_it_keeps_the_legacy_operation__type_column_compatible_with_v2_operation_queueing":0.016,"P\\Tests\\Unit\\Bookings\\OrderBookingsListCacheTest::__pest_evaluable_it_uses_sane_ttl_defaults_and_clamps_negative_ttl_to_zero":0,"P\\Tests\\Unit\\Bookings\\OrderBookingsListCacheTest::__pest_evaluable_it_builds_deterministic_keys_for_equivalent_contexts":0,"P\\Tests\\Unit\\Bookings\\OrderBookingsListCacheTest::__pest_evaluable_it_stores_and_retrieves_full_order_bookings_payloads":0,"P\\Tests\\Unit\\Bookings\\OrderBookingsListCacheTest::__pest_evaluable_it_ignores_malformed_cached_payloads_and_clears_order_bookings_list_caches":0,"P\\Tests\\Unit\\Bookings\\OrderBookingsRouteCacheWiringTest::__pest_evaluable_it_caches_the_paginated_order_bookings_list_response_and_invalidates_it_on_booking_changes":0.008,"P\\Tests\\Unit\\Bookings\\VehicleSearchBookedMetadataRouteContractTest::__pest_evaluable_it_keeps_booked_vehicle_search_metadata_aligned_with_filtered_pending_order_bookings":0.008,"P\\Tests\\Unit\\Bookings\\OrderBookingsCountsCacheTest::__pest_evaluable_it_uses_sane_ttl_defaults_and_clamps_negative_ttl_to_zero":0.001,"P\\Tests\\Unit\\Bookings\\OrderBookingsCountsCacheTest::__pest_evaluable_it_builds_deterministic_keys_for_equivalent_count_contexts":0.009,"P\\Tests\\Unit\\Bookings\\OrderBookingsCountsCacheTest::__pest_evaluable_it_stores_and_retrieves_normalized_booking_counts":0,"P\\Tests\\Unit\\Bookings\\OrderBookingsCountsCacheTest::__pest_evaluable_it_ignores_malformed_payloads_and_clears_order_bookings_count_caches":0,"P\\Tests\\Unit\\Bookings\\OrderBookingsCountsRouteWiringTest::__pest_evaluable_it_adds_a_cached_order_bookings_counts_endpoint_and_invalidates_it_on_booking_changes":0.009,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayFleetUsageStatisticsTest::__pest_evaluable_it_summarizes_fleet_usage_statistics_for_the_dashboard_landing_view":0,"P\\Tests\\Api\\ApiCoverageManifestTest::__pest_evaluable_it_keeps_every_selected_API_operation_covered_by_happy_path_and_failure_tests":0.271,"P\\Tests\\Api\\ApiCoverageManifestTest::__pest_evaluable_it_keeps_the_OpenAPI_manifest_entries_aligned_with_the_API_spec":0.097,"P\\Tests\\Api\\ApiFixturesCleanupTest::__pest_evaluable_it_removes_generated_customer_traces_during_fixture_cleanup":8.099,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_logs_in_with_valid_customer_credentials":0,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_rejects_invalid_login_payloads_and_credentials":0,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_returns_the_cached_auth_session_payload_for_a_valid_token":0,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_includes_economic_runtime_config_for_uncached_auth_sessions":0,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_rejects_invalid_auth_session_tokens":0,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_logs_out_and_invalidates_the_token_for_future_session_calls":0,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_logs_out_and_invalidates_cached_subuser_sessions":0,"P\\Tests\\Api\\AuthApiTest::__pest_evaluable_it_rejects_invalid_logout_tokens":0,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_returns_the_raw_202_gather_webhook_contract_over_HTTP":0.788,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_still_prompts_for_department_selection_when_only_one_department_is_eligible":0.732,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_accepts_the_legacy_initial_webhook_body_with_top_level_call_identifiers":0.692,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_returns_native_flow_gather_data_after_a_top_level_department_selection_when_distinct_gate_choices_exist":1.515,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_opens_the_gate_immediately_after_a_top_level_department_selection_when_entrance_and_exit_share_the_same_gate":1.719,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_uses_a_multi_digit_gather_contract_when_10_departments_are_eligible":0.587,"P\\Tests\\Api\\BirdVoiceWebhookApiTest::__pest_evaluable_it_returns_a_raw_400_transport_error_for_malformed_webhook_payloads":0.419,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_lists_only_visible_departments_and_can_return_a_single_department_with_the_slack_webhook":1.048,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_rejects_department_listing_when_the_permission_is_missing":0.378,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_creates_departments_through_the_real_endpoint":0.59,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_rejects_invalid_department_create_requests":1.554,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_updates_departments_through_the_real_endpoint":0.788,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_rejects_invalid_department_update_requests":1.552,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_lists_department_categories_for_a_department":1.006,"P\\Tests\\Api\\DepartmentsApiTest::__pest_evaluable_it_rejects_invalid_department_category_requests":1.191,"P\\Tests\\Api\\EconomicDraftCustomerApiTest::__pest_evaluable_it_lists_the_draft_customer_config_entry_in_economic_config_responses":0,"P\\Tests\\Api\\EconomicDraftCustomerApiTest::__pest_evaluable_it_round_trips_the_draft_customer_config_value_through_economic_config_updates":0,"P\\Tests\\Api\\EconomicDraftCustomerApiTest::__pest_evaluable_it_rejects_order_draft_exports_for_the_configured_draft_customer":0,"P\\Tests\\Api\\EconomicDraftCustomerApiTest::__pest_evaluable_it_rejects_booked_invoice_exports_for_the_configured_draft_customer":0,"P\\Tests\\Api\\EconomicDraftCustomerApiTest::__pest_evaluable_it_rejects_collected_invoice_exports_for_the_configured_draft_customer":0,"P\\Tests\\Api\\PingApiTest::__pest_evaluable_it_returns_the_ping_contract":0.877,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_returns_a_setup_required_error_when_department_terminal_readers_are_requested_without_terminal_setup":1.281,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_sends_a_Stripe_invoice_by_email_and_persists_the_hosted_invoice_association":5.434,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_returns_a_conflict_when_a_Stripe_hosted_invoice_is_already_active_for_the_order":4.756,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_allows_sending_a_new_Stripe_hosted_invoice_when_the_existing_association_is_already_terminal":3.943,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_voids_an_unpaid_Stripe_hosted_invoice_and_clears_the_local_order_association":3.746,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_refuses_to_cancel_a_paid_Stripe_hosted_invoice":4.131,"P\\Tests\\Api\\StripeApiTest::__pest_evaluable_it_returns_a_setup_required_error_when_creating_a_payment_intent_for_a_department_without_terminal_setup":0.726,"P\\Tests\\Api\\VehiclesApiTest::__pest_evaluable_it_returns_the_newest_vehicle_last__order__id_that_still_has_order_items":1.326,"P\\Tests\\Api\\VehiclesApiTest::__pest_evaluable_it_returns_a_null_vehicle_last__order__id_when_no_order_with_items_exists":1.159,"P\\Tests\\Unit\\Users\\EconomicCustomerModelParsingTest::__pest_evaluable_it_parses_cached_economic_customer_payloads_that_use_snake__case_customer__number":0,"P\\Tests\\Unit\\Users\\EconomicCustomerModelParsingTest::__pest_evaluable_it_leaves_the_economic_customer_model_empty_when_no_valid_customer_number_is_present":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayFleetUsageStatisticsTest::__pest_evaluable_it_derives_fleet_usage_directly_from_cached_gateway_row_summaries":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_builds_install_script_urls_with_the_compose_edge_gateway_artifacts_and_forwarded_https_scheme":0.441,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayMetadataUpdateContractTest::__pest_evaluable_it_adds_a_gateway_metadata_update_endpoint_with_label_and_primary_assignment_fields":0.006,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayMetadataUpdateContractTest::__pest_evaluable_it_reassigns_department_primary_gateways_through_dedicated_manager_helpers":0.006,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayShellPollingTransportTest::__pest_evaluable_it_removes_shell_access_from_the_edge_gateway_HTTP_contracts":0.006,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayUpdateLifecycleTest::__pest_evaluable_it_builds_the_installer_around_the_compose_stack_artifacts_and_management_polling_config":0.048,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayViewCacheTest::__pest_evaluable_it_uses_sane_ttl_defaults_and_deterministic_cache_keys":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayViewCacheTest::__pest_evaluable_it_stores_and_retrieves_cached_list_and_detail_payloads":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayViewCacheTest::__pest_evaluable_it_syncs_gateway_snapshots_into_cached_list_payloads_and_refreshes_fleet_usage":0.001,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayViewCacheTest::__pest_evaluable_it_removes_deleted_gateways_from_cached_list_and_detail_payloads":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayUpdateLifecycleTest::__pest_evaluable_it_exposes_update_payload__credential_rotation__cancel_endpoints__and_operation_endpoints_without_shell_transport_wiring":0.012,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayModuleRouteWiringTest::__pest_evaluable_it_registers_module_scoped_edge_gateway_operator_routes":0.005,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayModuleRouteWiringTest::__pest_evaluable_it_registers_edge_gateway_module_config_endpoints":0.006,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayModuleRouteWiringTest::__pest_evaluable_it_registers_edge_gateway_config_endpoints_from_the_module_route_directory":0.009,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayModuleRouteWiringTest::__pest_evaluable_it_keeps_only_the_module_facade_in_the_global_classes_directory_and_conditionally_loads_module_routes":0.004,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayInstallSessionLifecycleTest::__pest_evaluable_it_caps_install_session_diagnostics_and_events_while_preserving_the_first_start_timestamp":0.001,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayInstallSessionLifecycleTest::__pest_evaluable_it_clears_terminal_failure_details_after_a_successful_claim_update":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayInstallSessionLifecycleTest::__pest_evaluable_it_marks_expired_non_terminal_install_sessions_as_terminal_when_read_back":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_builds_websocket_broker_urls_on_the_traefik_broker_path":0.453,"P\\Tests\\Unit\\Selfserve\\DepartmentGateConfigRelayTest::__pest_evaluable_it_validates_relay_gate_configs_and_keeps_relay_specific_fields_in_the_payload":0,"P\\Tests\\Unit\\Selfserve\\DepartmentGateConfigRelayTest::__pest_evaluable_it_rejects_relay_gate_configs_without_a_logical_relay_id":0,"P\\Tests\\Unit\\Bird\\DepartmentGatesRelayOpenTest::__pest_evaluable_it_dispatches_relay_backed_gates_through_the_edge_gateway_relay_manager":0,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayDepartmentWorkspaceContractTest::__pest_evaluable_it_defines_the_department_hardware_workspace_service_payload_surface":0.011,"P\\Tests\\Unit\\Selfserve\\PlateScannerWorkspaceContractTest::__pest_evaluable_it_adds_lane_aware_scanner_management_and_a_dedicated_rotate_key_action":0.009,"P\\Tests\\Unit\\Selfserve\\PlateScannerWorkspaceContractTest::__pest_evaluable_it_uses_the_scanner_default_lane_before_requiring_an_explicit_lane__id_in_machine_button_webhooks":0.005,"P\\Tests\\Unit\\Selfserve\\GatewayShellyTransportTest::__pest_evaluable_it_maps_gateway_relay_status_responses_into_the_Shelly_cloud_payload_shape":0,"P\\Tests\\Unit\\Selfserve\\GatewayShellyTransportTest::__pest_evaluable_it_maps_gateway_relay_switch_responses_into_the_Shelly_cloud_payload_shape":0,"P\\Tests\\Unit\\Selfserve\\GatewayShellyTransportTest::__pest_evaluable_it_requires_a_valid_department_id_for_gateway_transport_requests":0,"P\\Tests\\Unit\\Selfserve\\GatewayShellyTransportTest::__pest_evaluable_it_rejects_unsupported_gateway_transport_endpoints":0,"P\\Tests\\Unit\\Selfserve\\GatewayShellyTransportTest::__pest_evaluable_it_surfaces_binding_lookup_failures_while_resolving_relay_state_through_the_gateway_transport":0,"P\\Tests\\Unit\\Selfserve\\GatewayShellyTransportTest::__pest_evaluable_it_surfaces_offline_gateway_failures_while_dispatching_relay_switch_commands":0,"P\\Tests\\Api\\PlateScannersApiTest::__pest_evaluable_it_returns_the_updated_lane_id_after_editing_a_scanner_whose_null_lane_was_already_cached":21.835,"P\\Tests\\Api\\PlateScannersApiTest::__pest_evaluable_it_rejects_plate_scanner_edits_when_the_permission_is_missing":7.837,"P\\Tests\\Unit\\Selfserve\\ShellyRelayInventoryTest::__pest_evaluable_it_normalizes_owned_Shelly_devices_into_relay_select_options":0.001,"P\\Tests\\Unit\\Selfserve\\ShellyRelayInventoryTest::__pest_evaluable_it_fails_fast_when_Shelly_inventory_does_not_include_owned_devices_status":0,"P\\Tests\\Unit\\Selfserve\\DepartmentLaneRelayOptionsRouteWiringTest::__pest_evaluable_it_registers_a_department_lane_relay_options_endpoint_backed_by_Shelly_inventory":0.008,"P\\Tests\\Unit\\Selfserve\\DepartmentLaneRelayNullificationRouteWiringTest::__pest_evaluable_it_nullifies_department_lane_relay_fields_when_blank_select_values_are_submitted":0.007,"P\\Tests\\Api\\EdgeGatewayAgentApiTest::__pest_evaluable_it_serves_installer_artifacts_and_recovers_gateway_runtime_status_after_fresh_heartbeats":109.487,"P\\Tests\\Api\\EdgeGatewayAgentApiTest::__pest_evaluable_it_polls_operations_and_commands__submits_results__and_records_broker_presence_for_task_pages":229.768,"P\\Tests\\Api\\EdgeGatewayAgentApiTest::__pest_evaluable_it_rejects_missing_and_invalid_edge_agent_tokens":12.815,"P\\Tests\\Api\\EdgeGatewayBrokerApiTest::__pest_evaluable_it_validates_broker_sessions_and_ingests_presence__telemetry__logs__and_shell_lifecycle_data":180.867,"P\\Tests\\Api\\EdgeGatewayBrokerApiTest::__pest_evaluable_it_builds_broker_backlog_and_completes_gateway_operations_through_broker_endpoints":147.749,"P\\Tests\\Api\\EdgeGatewayBrokerApiTest::__pest_evaluable_it_rejects_invalid_edge_broker_shared_secrets":6.832,"P\\Tests\\Api\\EdgeGatewayOperatorApiTest::__pest_evaluable_it_creates_install_tokens__tracks_installer_status__and_exposes_claimed_gateway_detail_to_authorized_operators":134.744,"P\\Tests\\Api\\EdgeGatewayOperatorApiTest::__pest_evaluable_it_manages_edge_gateway_metadata__bindings__operations__sessions__rotation__cutover__and_deletion":272.219,"P\\Tests\\Api\\EdgeGatewayOperatorApiTest::__pest_evaluable_it_rejects_operator_edge_routes_when_module_permission_or_department_access_is_missing":46.681,"P\\Tests\\Integration\\EdgeGateway\\EdgeGatewayBackendIntegrationTest::__pest_evaluable_it_persists_install_session_updates_and_derives_gateway_runtime_status_from_heartbeats":0.015,"P\\Tests\\Integration\\EdgeGateway\\EdgeGatewayBackendIntegrationTest::__pest_evaluable_it_assembles_tasks__logs__statistics__operations__commands__and_shell_lifecycle_state_from_persisted_records":0.019,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_builds_localhost_websocket_broker_urls_on_the_local_traefik_api_prefix":0.608,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerUrlTest::__pest_evaluable_it_keeps_root_host_api_urls_unprefixed_when_the_request_is_not_under_the_local_api_alias":0.283,"P\\Tests\\Unit\\Customers\\CustomerMassImportServiceTest::__pest_evaluable_it_imports_a_matching_e_conomic_customer_into_the_local_system_when_no_local_record_exists":0.001,"P\\Tests\\Unit\\Customers\\CustomerMassImportServiceTest::__pest_evaluable_it_reports_when_the_local_customer_already_has_a_login_account":0,"P\\Tests\\Unit\\Customers\\CustomerMassImportServiceTest::__pest_evaluable_it_creates_a_new_e_conomic_customer_and_returns_a_created_result_for_new_rows":0,"P\\Tests\\Unit\\Customers\\CustomerMassImportServiceTest::__pest_evaluable_it_creates_the_economic_record_for_an_existing_local_account_when_no_matching_upstream_customer_exists":0,"P\\Tests\\Unit\\Customers\\CustomerMassImportServiceTest::__pest_evaluable_it_rejects_CVR_conflicts_when_the_upstream_customer_number_does_not_match_the_submitted_phone_number":0,"P\\Tests\\Unit\\Customers\\CustomerMassImportServiceTest::__pest_evaluable_it_registers_the_customer_import_route_and_wires_it_through_the_mass_import_service":0.004,"P\\Tests\\Unit\\Users\\UsersCustomerNamesCacheTest::__pest_evaluable_it_builds_customer_name_cache_payloads_from_economic_data_or_display_name_fallbacks":0,"P\\Tests\\Unit\\Users\\UsersCustomerNamesCacheTest::__pest_evaluable_it_guards_bulk_customer_name_cache_writes_behind_a_resolved_payload_check":0.004,"P\\Tests\\Api\\EdgeGatewayOperatorApiTest::__pest_evaluable_it_ignores_and_soft_deletes_edge_gateways_whose_department_no_longer_exists":35.946,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerHeartbeatStatusTest::__pest_evaluable_it_only_trusts_broker_presence_while_the_broker_heartbeat_is_fresh":0.65,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayManagerHeartbeatStatusTest::__pest_evaluable_it_refreshes_broker_presence_from_broker_telemetry_heartbeats":0.007,"P\\Tests\\Unit\\Selfserve\\ShellyTransportResolverTest::__pest_evaluable_it_resolves_the_injected_gateway_transport_when_a_department_is_in_gateway_mode":0,"P\\Tests\\Unit\\Selfserve\\ShellyTransportResolverTest::__pest_evaluable_it_resolves_the_injected_cloud_transport_when_a_department_is_in_cloud_mode":0,"P\\Tests\\Unit\\Selfserve\\ShellyTransportResolverTest::__pest_evaluable_it_lets_relay_tests_override_the_department_transport_without_changing_department_mode":0,"P\\Tests\\Unit\\Selfserve\\ShellyRelayInventoryTest::__pest_evaluable_it_falls_back_to_local_device_and_control_names_when_Shelly_cloud_list_metadata_is_unavailable":0,"P\\Tests\\Unit\\Selfserve\\GatewayShellyTransportTest::__pest_evaluable_it_uses_local_only_gateway_dispatch_for_explicit_local_transport_overrides":0,"P\\Tests\\Unit\\Selfserve\\ShellyTransportResolverTest::__pest_evaluable_it_marks_non_injected_local_overrides_as_local_only_gateway_transport":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLanePortControllerTest::__pest_evaluable_it_opens_exit_port_by_switching_relay__out__id_on":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLanePortControllerTest::__pest_evaluable_it_opens_entrance_port_by_switching_relay__in__id_on":0,"P\\Tests\\Unit\\Selfserve\\GatewayShellyTransportTest::__pest_evaluable_it_forwards_Shelly_toggle__after_timers_to_gateway_relay_switches":0,"P\\Tests\\Unit\\Selfserve\\ShellyTransportResolverTest::__pest_evaluable_it_marks_non_injected_local_and_gateway_overrides_as_local_only_gateway_transport":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_preserves_local_gateway_diagnostic_metadata_on_relay_status_snapshots":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_includes_positive_relay_timers_in_Shelly_switch_payloads":0,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_applies_Shelly_transport_overrides_across_self_serve_relay_side_effect_routes":0.003,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayLegacyRouteShimTest::__pest_evaluable_it_keeps_guarded_legacy_root_shims_for_moved_edge_gateway_routes":0.011,"P\\Tests\\Integration\\EdgeGateway\\EdgeGatewayBackendIntegrationTest::__pest_evaluable_it_persists_gateway_cutover_relay_bindings_used_by_self_serve_Shelly_dispatch":0.015,"P\\Tests\\Unit\\Selfserve\\SelfserveLanePortControllerTest::__pest_evaluable_it_passes_explicit_timer_values_when_opening_lane_gates":0,"P\\Tests\\Unit\\Selfserve\\ShellyRelayInventoryTest::__pest_evaluable_it_keeps_Shelly_1_Mini_Gen3_type__model__and_generation_aligned_with_Shelly_metadata":0,"P\\Tests\\Api\\EdgeGatewayBrokerApiTest::__pest_evaluable_it_rejects_shell_session_creation_while_broker_presence_is_unavailable":23.503,"P\\Tests\\Unit\\Selfserve\\EdgeGatewayModuleRouteWiringTest::__pest_evaluable_it_registers_broker_settings_as_editable_edge_gateway_module_config":0.004,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_wires_self_serve_session_management_endpoints_and_OpenAPI_coverage":0.01,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_keeps_self_serve_force_stop_distinct_from_normal_STOP_relay_and_gate_behavior":0.022,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_keeps_read_only_self_serve_preview_and_summary_refreshes_from_touching_relay_hardware":0.004,"P\\Tests\\Unit\\Selfserve\\SelfserveWashFlowMachineAllowedWiringTest::__pest_evaluable_it_separates_session_synchronization_from_relay_hardware_synchronization":0.013,"P\\Tests\\Unit\\Selfserve\\ShellyRealRequestGuardTest::__pest_evaluable_it_blocks_and_records_test_mode_Shelly_POST_requests_before_cURL_can_run":0.001,"P\\Tests\\Unit\\Selfserve\\ShellyRealRequestGuardTest::__pest_evaluable_it_blocks_and_records_test_mode_Shelly_GET_requests_before_cURL_can_run":0,"P\\Tests\\Unit\\Selfserve\\ZZZShellyGuardSafetyMetaTest::__pest_evaluable_it_did_not_record_any_real_Shelly_request_attempts_during_self_serve_tests":0,"P\\Tests\\Api\\SelfserveFixtureApiTest::__pest_evaluable_it_creates_a_comprehensive_self_serve_API_scenario_with_demo_relays":14.263,"P\\Tests\\Api\\SelfserveZZZShellyGuardApiTest::__pest_evaluable_it_did_not_record_any_real_Shelly_request_attempts_during_self_serve_API_tests":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_serializes_questions__conditions__tasks__scopes__and_gateways_into_one_graph":0.001,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_derives_studio_vehicle_type_lookup_rows_from_selectable_wash_products":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_applies_saved_layout_without_changing_graph_semantics":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_keeps_layout_loading_compatible_with_native_PDO_named_placeholders":0.009,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_builds_guided_simulator_debug_payload_with_blockers_and_canvas_annotations":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_resolves_simulator_gateway_service_bindings_from_lane_relay_slots":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneRelayShellyBatchingTest::__pest_evaluable_it_persists_allowed_services_without_relay_writes_for_pre_start_wash_setup":0,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_wires_the_all_in_one_self_serve_studio_replacement_endpoints":0.015,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStartEntranceTimeoutTest::__pest_evaluable_it_continues_start_when_entrance_relay_dispatch_times_out_ambiguously":0.001,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStartEntranceTimeoutTest::__pest_evaluable_it_still_fails_start_for_non_timeout_entrance_relay_errors":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStartEntranceTimeoutTest::__pest_evaluable_it_parses_deferred_relay_side_effects_on_start_command_arguments":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStartEntranceTimeoutTest::__pest_evaluable_it_skips_cleaner_and_machine_relay_side_effects_when_start_asks_to_defer_them":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStartEntranceTimeoutTest::__pest_evaluable_it_keeps_cleaner_and_machine_relay_side_effects_for_normal_start_commands":0,"P\\Tests\\Unit\\Selfserve\\SelfservePropertyGatePermissionBypassTest::__pest_evaluable_it_allows_property_gate_commands_for_customers_with_an_active_wash_in_the_target_department":0,"P\\Tests\\Unit\\Selfserve\\SelfservePropertyGatePermissionBypassTest::__pest_evaluable_it_does_not_bypass_property_gate_permissions_without_a_positive_customer_number":0,"P\\Tests\\Unit\\Selfserve\\SelfservePropertyGatePermissionBypassTest::__pest_evaluable_it_does_not_bypass_property_gate_permissions_when_the_customer_has_no_active_wash_in_the_target_department":0,"P\\Tests\\Unit\\Selfserve\\SelfserveOpenApiSpecTest::__pest_evaluable_it_documents_the_all_in_one_self_serve_studio_replacement_API":0.007,"P\\Tests\\Unit\\Selfserve\\SelfserveNonOwnedVehicleWashAccessTest::__pest_evaluable_it_allows_own_permission_customers_to_preview_borrowed_registration_plates_without_ownership_checks":0.004,"P\\Tests\\Unit\\Selfserve\\SelfserveNonOwnedVehicleWashAccessTest::__pest_evaluable_it_allows_customer_scoped_answers_to_be_stored_for_borrowed_registration_plates":0.005,"P\\Tests\\Unit\\Selfserve\\SelfserveNonOwnedVehicleWashAccessTest::__pest_evaluable_it_does_not_apply_saved_answers_from_another_customer_for_the_same_registration_plate":0.027,"P\\Tests\\Unit\\Selfserve\\SelfserveNonOwnedVehicleWashAccessTest::__pest_evaluable_it_scopes_saved_self_serve_answers_by_customer_number_and_registration_plate":0.008,"P\\Tests\\Unit\\Selfserve\\SelfserveNonOwnedVehicleWashAccessTest::__pest_evaluable_it_loads_saved_answers_from_the_authenticated_customer_context_instead_of_the_plate_owner":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_does_not_count_shifts_without_punches_when_checkIn_checkOut_are_null":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_counts_overtime_minutes_when_a_saved_shift_end_extends_past_the_approved_original_end":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_does_not_count_removed_approved_time_when_a_saved_shift_end_is_shortened":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_caps_current_slot_hours_to_elapsed_minutes_and_zeroes_future_slots":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_counts_checked_in_shifts_without_checkOut_up_to_occurredUntil":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodRouteGuardsTest::__pest_evaluable_it_keeps_the_main_period_response_local_only_for_booked_state_and_customer_names":0.005,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodRouteGuardsTest::__pest_evaluable_it_streams_the_main_period_response_instead_of_encoding_the_full_payload_at_once":0.008,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodRouteGuardsTest::__pest_evaluable_it_maps_batched_period_transaction_rows_to_the_legacy_transaction_response_shape":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodRouteGuardsTest::__pest_evaluable_it_uses_batched_period_transactions_and_keyed_customer_maps_in_the_main_period_route":0.006,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodRouteGuardsTest::__pest_evaluable_it_falls_back_to_configured_e_conomic_default_department_for_missing_customer_default_department_in_distributions":0.004,"P\\Tests\\Api\\EconomicDraftCustomerApiTest::__pest_evaluable_it_round_trips_the_default_distribution_department_config_value_through_economic_config_updates":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_computes_MySQL_GTID_interval_counts_and_coverage_percentages":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_reports_empty_source_GTID_sets_as_caught_up":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_computes_Redis_offset_percentages_safely":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_computes_MariaDB_GTID_coverage_by_domain_sequence":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_normalizes_public_replication_kind_aliases":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_supports_MariaDB_prerequisites_without_requiring_Oracle_MySQL_variables":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_reports_MariaDB_specific_blockers_when_GTID_or_binary_logging_prerequisites_are_missing":0,"P\\Tests\\Unit\\Replication\\ReplicationSecretBoxTest::__pest_evaluable_it_encrypts_replication_secrets_without_storing_plaintext":0.001,"P\\Tests\\Unit\\Replication\\ReplicationSecretBoxTest::__pest_evaluable_it_builds_active_database_and_redis_config_from_encrypted_bootstrap_snapshots":0,"P\\Tests\\Unit\\Replication\\SuperuserReplicationRouteWiringTest::__pest_evaluable_it_registers_superuser_replication_endpoints_and_permissions":0.003,"P\\Tests\\Unit\\Replication\\SuperuserReplicationRouteWiringTest::__pest_evaluable_it_documents_replication_management_in_openapi":0.007,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_generates_replication_ready_MariaDB_compose_templates_without_embedding_secrets":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_generates_Redis_replica_compose_templates_with_primary_connection_placeholders":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_does_not_require_replica_SQL_threads_before_database_provisioning_configures_them":0.004,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_creates_the_generated_replication_user_on_the_primary_during_provisioning":0.007,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_detects_missing_database_tables_before_provisioning_a_preseeded_replica":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_allows_failed_replicas_to_be_removed_without_allowing_primary_or_healthy_replica_removal":0.005,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_seeds_MariaDB_replicas_in_place_instead_of_requiring_container_recreation":0.005,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_keeps_replication_operation_progress_schema_idempotent_for_existing_installs":0.004,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_limits_MariaDB_log_table_seeding_to_the_last_month":0.002,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_skips_log_table_data_during_MariaDB_seeding_and_replication":0.003,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_keeps_operational_log_tables_schema_only_during_MariaDB_seeding_and_replication":0.005,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_provisions_Redis_replicas_after_a_connectivity_only_preflight_and_reports_sync_progress":0.008,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_keeps_Redis_promotion_caught_up__durable__and_metadata_safe":0.005,"P\\Tests\\Unit\\Auth\\CreateTokenTest::__pest_evaluable_it_creates_auth_tokens_and_reports_missing_customer_users_clearly":0.31,"P\\Tests\\Unit\\Auth\\EconomicCreateCustomerResponseTest::__pest_evaluable_it_returns_the_raw_upstream_create_response_and_preserves_the_requested_payload":0,"P\\Tests\\Unit\\Auth\\RegisterCvrLegacyScriptTest::__pest_evaluable_it_keeps_the_legacy_register_cvr_route_harness_passing":0.045,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_returns_a_raw_202_gather_response_for_initial_department_selection":0.011,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_accepts_legacy_initial_webhook_payloads_with_top_level_call_identifiers":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_returns_a_flow_data_gather_payload_after_department_selection_in_native_flow_mode_when_distinct_gate_choices_exist":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_opens_the_gate_immediately_after_department_selection_when_entrance_and_exit_resolve_to_the_same_gate_in_native_flow_mode":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_returns_a_flow_data_completion_payload_after_gate_confirmation_in_native_flow_mode":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_returns_a_second_stage_raw_202_gather_response_after_department_selection_when_distinct_gate_choices_exist":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_opens_the_shared_gate_immediately_after_department_selection_in_raw_command_mode":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_opens_the_selected_gate_and_clears_redis_state_on_final_selection":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_reprompts_with_invalid_selection_while_keeping_webhook_state":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_uses_fallback_dtmf_extraction_when_event_gather_keys_are_missing":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_prompts_for_department_selection_even_when_only_one_eligible_department_exists":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_prompts_for_a_single_available_gate_type_and_opens_only_after_explicit_confirmation":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_supports_multi_digit_department_selections_before_gate_confirmation":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_returns_a_direct_raw_200_completion_when_no_departments_are_eligible":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_continues_with_the_first_gather_prompt_when_backend_call_acceptance_fails":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteCallLifecycleTest::__pest_evaluable_it_returns_a_business_failure_raw_200_response_when_gate_opening_fails":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteIvrTest::__pest_evaluable_it_builds_deterministic_department_digit_map_without_capping_options":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteIvrTest::__pest_evaluable_it_builds_compact_gate_option_maps_and_resolves_selected_gate_type_by_digit":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteIvrTest::__pest_evaluable_it_builds_department_prompts_with_multi_digit_guidance_and_compact_gate_prompts":0,"P\\Tests\\Unit\\Bird\\BirdVoiceWebhooksRouteIvrTest::__pest_evaluable_it_normalizes_menu_digit_input_from_Bird_dtmf_payload_values":0,"P\\Tests\\Unit\\Bird\\DepartmentGatesPhoneCallOpenTest::__pest_evaluable_it_forwards_phone_number_and_call_duration_threshold_to_the_Bird_gate_helper":0.001,"P\\Tests\\Unit\\Bird\\DepartmentGatesPhoneCallOpenTest::__pest_evaluable_it_wraps_Bird_helper_failures_and_reports_them_to_Slack":0,"P\\Tests\\Unit\\Bookings\\NonPosBookingCompletionRemovalTest::__pest_evaluable_it_unregisters_legacy_booking_completion_forms":0.007,"P\\Tests\\Unit\\Bookings\\NonPosBookingCompletionRemovalTest::__pest_evaluable_it_keeps_legacy_wash_certificate_downloads_but_disables_generation_and_completion":0.019,"P\\Tests\\Unit\\DailyReports\\DepartmentDailyReportsComplaintsOpenApiSpecTest::__pest_evaluable_it_documents_the_daily_report_complaints_CRUD_and_customer_lookup_endpoints_in_openapi":0.009,"P\\Tests\\Unit\\DailyReports\\DepartmentDailyReportsComplaintsRouteContractTest::__pest_evaluable_it_wires_complaint_create__lookup__list__edit__and_delete_routes_with_validation_and_parsing":0.005,"P\\Tests\\Unit\\DailyReports\\DepartmentDailyReportsOutsideHoursOpenApiSpecTest::__pest_evaluable_it_documents_outside_hours_summary_and_trend_schemas_in_openapi":0.007,"P\\Tests\\Unit\\DailyReports\\DepartmentDailyReportsOutsideHoursRouteContractTest::__pest_evaluable_it_wires_outside_hours_summary_and_trend_endpoints_through_the_dedicated_statistics_service":0.003,"P\\Tests\\Unit\\DailyReports\\DepartmentDailyReportsOutsideHoursRouteContractTest::__pest_evaluable_it_initializes_the_outside_hours_statistics_service_before_building_the_transaction_count_summary_payload":0.003,"P\\Tests\\Unit\\DailyReports\\DepartmentDailyReportsOverviewOpenApiSpecTest::__pest_evaluable_it_documents_the_daily_report_overview_endpoint_and_reusable_schemas_in_openapi":0.008,"P\\Tests\\Unit\\DailyReports\\DepartmentDailyReportsOverviewRouteTest::__pest_evaluable_it_builds_the_overview_payload_from_batched_repository_data_with_deterministic_tile_states":0.006,"P\\Tests\\Unit\\DailyReports\\DepartmentDailyReportsOverviewRouteTest::__pest_evaluable_it_marks_overtime_unavailable_when_not_every_selected_department_can_be_mapped_to_workfeed":0,"P\\Tests\\Unit\\DailyReports\\DepartmentDailyReportsOverviewRouteTest::__pest_evaluable_it_normalizes_department_id_input_from_csv_strings_and_nested_values":0,"P\\Tests\\Unit\\DailyReports\\DepartmentDailyReportsOverviewRouteTest::__pest_evaluable_it_limits_overtime_counting_to_the_selected_reporting_range":0,"P\\Tests\\Unit\\DailyReports\\DepartmentDailyReportsOverviewRouteTest::__pest_evaluable_it_does_not_count_negative_approved_overtime_when_a_saved_end_shortens_the_shift":0,"P\\Tests\\Unit\\DailyReports\\DepartmentDailyReportsOverviewRouteTest::__pest_evaluable_it_ignores_late_unapproved_administrative_edits_when_calculating_overtime":0,"P\\Tests\\Unit\\DailyReports\\DepartmentDailyReportsOverviewRouteTest::__pest_evaluable_it_wires_the_overview_route_to_batched_repository_methods_and_overview_path":0.009,"P\\Tests\\Unit\\DailyReports\\DepartmentOutsideHoursStatisticsServiceTest::__pest_evaluable_it_counts_only_outside_hours_washes_and_flags_missing_opening_hours_without_counting_them_as_closed":0.001,"P\\Tests\\Unit\\DailyReports\\DepartmentOutsideHoursStatisticsServiceTest::__pest_evaluable_it_deduplicates_linked_washes_with_self_serve_first__then_xlvask__then_orders":0,"P\\Tests\\Unit\\DailyReports\\DepartmentOutsideHoursStatisticsServiceTest::__pest_evaluable_it_builds_daily_trend_points_with_per_day_missing_hours_diagnostics":0,"P\\Tests\\Unit\\Database\\DbObjectRedisNamespaceSafetyTest::__pest_evaluable_it_keeps_db_object_Redis_access_namespace_safe":0.007,"P\\Tests\\Unit\\DynamicImages\\DepartmentLaneDynamicImageRouteTest::__pest_evaluable_it_allows_studio_lane_dynamic_image_previews_to_override_the_saved_image_id":0.005,"P\\Tests\\Unit\\DynamicImages\\DepartmentLaneDynamicImageRouteTest::__pest_evaluable_it_accepts_ordered_dynamic_image_button_tokens_including_reset_start_and_zero":0.003,"P\\Tests\\Unit\\DynamicImages\\DepartmentLaneDynamicImageRouteTest::__pest_evaluable_it_renders_machine_one_dynamic_image_steps_from_the_ordered_button_payload":0.008,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueDetailsSummaryBuilderTest::__pest_evaluable_it_uses_queued_job_payload_customer_context_before_result_data_exists":0,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueRouteHardeningTest::__pest_evaluable_it_exposes_collected_invoice_queue_monitor_and_per_user_terminal_clear_routes":0.003,"P\\Tests\\Unit\\Invoicing\\CollectedInvoiceQueueRouteHardeningTest::__pest_evaluable_it_runs_collected_invoice_queue_batches_through_an_explicit_manual_endpoint":0.004,"P\\Tests\\Unit\\Invoicing\\EconomicAuthTokenFallbackTest::__pest_evaluable_it_bounds_e_conomic_curl_calls_below_the_PHP_request_timeout":0.01,"P\\Tests\\Unit\\Invoicing\\EconomicCustomersDiscountFallbackTest::__pest_evaluable_it_falls_back_to_a_later_customer_template_product_when_earlier_probes_fail_on_missing_currency_prices":0,"P\\Tests\\Unit\\Invoicing\\EconomicCustomersDiscountFallbackTest::__pest_evaluable_it_returns_zero_when_every_customer_template_lookup_fails_due_to_missing_currency_prices":0,"P\\Tests\\Unit\\Invoicing\\EconomicCustomersDiscountFallbackTest::__pest_evaluable_it_rethrows_unrelated_discount_lookup_failures":0,"P\\Tests\\Unit\\Invoicing\\EconomicDraftCustomerOpenApiSpecTest::__pest_evaluable_it_documents_transaction_draft_customer_config_and_auth_runtime_fields_in_all_tracked_openapi_copies":0.27,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueCronEntrypointWiringTest::__pest_evaluable_it_wires_root_cron_entrypoint_to_the_full_cron_scheduler_with_queue_worker_tasks":0.003,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueOpenApiSpecTest::__pest_evaluable_it_documents_additive_collected_invoice_queue_pagination_metadata_and_retry_conflict_semantics":0.007,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueWorkerTickRouteTest::__pest_evaluable_it_exposes_an_explicit_collected_invoice_transfer_queue_run_route_instead_of_ticking_read_endpoints":0.005,"P\\Tests\\Unit\\Invoicing\\EconomicTransferQueueWorkerTickRouteTest::__pest_evaluable_it_keeps_order_transfer_queue_status_routes_read_only":0.003,"P\\Tests\\Unit\\Invoicing\\EconomicV2BookedDepartment75DistributionTest::__pest_evaluable_it_assigns_classified_booked_department_75_amounts_to_fallback_when_no_monthly_basis_exists":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2DistributionServiceFallbackTest::__pest_evaluable_it_falls_back_to_system_orders_for_fixed_pricing_using_the_configured_fallback_department":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2DistributionServiceFallbackTest::__pest_evaluable_it_falls_back_to_system_orders_for_wash_subscriptions_using_the_configured_fallback_department":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2DistributionServiceFallbackTest::__pest_evaluable_it_uses_the_configured_fallback_department_when_a_subscription_has_no_customer_department_basis":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2DistributionServiceFallbackTest::__pest_evaluable_it_excludes_orphaned_customer_traces_from_fixed_pricing_and_customer_price_distributions":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2DistributionServiceFallbackTest::__pest_evaluable_it_excludes_orphaned_customers_from_subscription_fallback_versions":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2DistributionServiceOrderOverrideTest::__pest_evaluable_it_inherits_department_eligibility_when_no_order_override_is_set":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2DistributionServiceOrderOverrideTest::__pest_evaluable_it_allows_an_order_level_include_override_to_overrule_department_exclusion":0,"P\\Tests\\Unit\\Invoicing\\EconomicV2DistributionServiceOrderOverrideTest::__pest_evaluable_it_allows_an_order_level_exclude_override_to_overrule_department_inclusion":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_builds_deterministic_automatic_flag_fingerprints_and_interactive_price_message_parts":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_builds_interactive_message_parts_for_order_and_wash_certificate_warnings":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_includes_order_item_preview_context_for_required_order_field_warnings":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_allows_tank_cleaning_products_for_only_tank_cleaning_customers":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_does_not_flag_interior_wash_variants_as_historical_primary_product_mismatches":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_does_not_report_duplicate_primary_vehicle_products_from_duplicated_detector_rows_for_the_same_order_item":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_uses_attached_wash_certificate_documents_instead_of_safety_seal_text_for_certificate_presence":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_loads_wash_certificate_attachment_presence_from_order_attachment_content":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_uses_the_highest_customer_specific_discount_in_expected_price_breakdowns":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_uses_a_preloaded_e_conomic_global_discount_in_expected_price_breakdowns":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_does_not_report_a_price_mismatch_when_a_product_specific_discount_makes_the_expected_price_zero":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_preloads_and_caches_missing_e_conomic_discounts_before_price_mismatch_detection":0.005,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_seeds_order_item_preview_cache_from_period_rows":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_sorts_manual_flags_before_automatic_warnings_and_preserves_legacy_circle_indicators_without_flags":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_scopes_invoice_period_flags_to_the_customer_card_that_can_render_them":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_keeps_order_item_preview_context_compact_for_the_period_response":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_formats_stored_manual_flags_with_the_creating_superuser_display_name":0,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_validates_supported_manual_flag_fields_by_target_type":0.019,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_wires_invoice_period_flag_routes_with_explicit_list_create_and_update_permissions":0.005,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_uses_the_users_display__name_column_in_detector_queries":0.006,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_aggregates_customer_price_overrides_by_customer_number_for_price_mismatch_detection":0.005,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_guards_optional_customer_vehicle_deleted__at_filtering_behind_a_column_check":0.004,"P\\Tests\\Unit\\Invoicing\\InvoicePeriodFlagServiceTest::__pest_evaluable_it_limits_historical_primary_product_lookup_to_current_period_registrations":0.005,"P\\Tests\\Unit\\Invoicing\\InvoicingOrdersCalculationsHardeningTest::__pest_evaluable_it_provides_a_batched_plain_row_transaction_query_for_invoicing_period_responses":0.005,"P\\Tests\\Unit\\Invoicing\\InvoicingOrdersCalculationsHardeningTest::__pest_evaluable_it_adds_guarded_composite_indexes_for_invoicing_period_lookups":0.005,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodDraftOverlayTest::__pest_evaluable_it_blocks_invoicing_when_all_actionable_transactions_are_backed_by_valid_e_conomic_drafts":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodDraftOverlayTest::__pest_evaluable_it_keeps_invoicing_available_when_valid_drafts_only_cover_part_of_the_actionable_work":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodDraftOverlayTest::__pest_evaluable_it_excludes_errored__booked__deleted__and_missing_external_id_invoice_collections_at_query_time":0.007,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodDraftOverlayTest::__pest_evaluable_it_still_checks_valid_drafts_when_the_collection_table_has_no_deleted_marker_column":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodDraftOverlayTest::__pest_evaluable_it_blocks_fixed_pricing_and_subscription_customer_level_work_when_a_relevant_valid_draft_exists":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodDraftOverlayTest::__pest_evaluable_it_keeps_queue_blocking_ahead_of_the_draft_label_when_all_work_is_covered_by_queue_or_draft_state":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodPaginationTest::__pest_evaluable_it_detects_paginated_period_mode_only_when_pagination_parameters_are_present":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodPaginationTest::__pest_evaluable_it_normalizes_period_pagination_options_and_clamps_invalid_page_and_limit_values":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodPaginationTest::__pest_evaluable_it_slices_only_the_active_period_view_and_keeps_exact_full_result_type_counts":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodPaginationTest::__pest_evaluable_it_returns_the_entire_active_period_view_when_the_limit_is_all":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodPaginationTest::__pest_evaluable_it_searches_customer_fields_and_order_fields_at_the_customer_card_level":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodPaginationTest::__pest_evaluable_it_applies_requires_action_and_booked_visibility_filters_before_counting_and_slicing":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodQueueOverlayTest::__pest_evaluable_it_normalizes_targeted_customer_number_filters_from_comma_separated_or_repeated_values":0,"P\\Tests\\Unit\\Invoicing\\InvoicingPeriodQueueOverlayTest::__pest_evaluable_it_filters_period_customer_number_candidates_to_targeted_customers_only":0,"P\\Tests\\Unit\\MotorApi\\MotorApiCachedResultTest::__pest_evaluable_it_only_writes_cached_MotorAPI_metadata_when_a_response_object_exists":0,"P\\Tests\\Unit\\Orders\\OrderBookingsCompletionDedupTest::__pest_evaluable_it_attaches_and_emails_a_wash_certificate_when_a_booking_is_already_linked_to_a_pos_order_without_one":0,"P\\Tests\\Unit\\Orders\\OrderBookingsCompletionDedupTest::__pest_evaluable_it_does_not_create_or_email_a_duplicate_wash_certificate_when_a_linked_pos_order_already_has_one":0,"P\\Tests\\Unit\\Orders\\OrderBookingsCompletionDedupTest::__pest_evaluable_it_keeps_standalone_booking_completion_behavior_unchanged_for_wash_certificates":0,"P\\Tests\\Unit\\Orders\\OrdersAutoWashCertificateCompletionTest::__pest_evaluable_it_auto_attaches_a_wash_certificate_on_order_completion_when_a_wash_certificate_item_is_present":0,"P\\Tests\\Unit\\Orders\\OrdersAutoWashCertificateCompletionTest::__pest_evaluable_it_keeps_order_completion_idempotent_when_a_wash_certificate_is_already_attached":0,"P\\Tests\\Unit\\Orders\\OrdersAutoWashCertificateCompletionTest::__pest_evaluable_it_allows_blank_safety_seal_values_when_auto_attaching_a_wash_certificate_on_completion":0,"P\\Tests\\Unit\\Orders\\OrdersIncludeInInvoiceOverrideTest::__pest_evaluable_it_lets_the_order_level_override_include_an_otherwise_excluded_order":0,"P\\Tests\\Unit\\Orders\\OrdersIncludeInInvoiceOverrideTest::__pest_evaluable_it_lets_the_order_level_override_exclude_an_otherwise_included_order":0,"P\\Tests\\Unit\\Orders\\OrdersIncludeInInvoiceOverrideTest::__pest_evaluable_it_falls_back_to_the_department_invoicing_rule_when_the_override_is_null":0,"P\\Tests\\Unit\\Orders\\OrdersIncludeInInvoiceOverrideTest::__pest_evaluable_it_serializes_both_raw_and_effective_include__in__invoice_values":0,"P\\Tests\\Unit\\Orders\\OrdersInputNormalizerTest::__pest_evaluable_it_normalizes_sql_and_datetime_local_created__at_values":0,"P\\Tests\\Unit\\Orders\\OrdersInputNormalizerTest::__pest_evaluable_it_rejects_invalid_created__at_values":0,"P\\Tests\\Unit\\Orders\\OrdersInputNormalizerTest::__pest_evaluable_it_normalizes_include__in__invoice_tri_state_inputs":0,"P\\Tests\\Unit\\Orders\\OrdersInputNormalizerTest::__pest_evaluable_it_rejects_invalid_include__in__invoice_values":0,"P\\Tests\\Unit\\Orders\\OrdersRouteSettingsUpdateWiringTest::__pest_evaluable_it_wires_order_create_and_update_routes_through_the_settings_normalizers":0.004,"P\\Tests\\Unit\\Orders\\OrdersRouteSettingsUpdateWiringTest::__pest_evaluable_it_keeps_line_item_invoice_filtering_in_the_order_net_amount_calculation":0.003,"P\\Tests\\Unit\\Orders\\OrdersRouteStripePaymentIntentLifecycleWiringTest::__pest_evaluable_it_wires_mobile_stripe_payment_intent_routes_to_normalized_lifecycle_handling":0.005,"P\\Tests\\Unit\\Orders\\StripePaymentIntentsPersistenceWiringTest::__pest_evaluable_it_wires_stripe_payment_intent_persistence_to_prune_duplicates_and_clear_reader_state_safely":0.006,"P\\Tests\\Unit\\Redis\\RedisAtomicReservationTest::__pest_evaluable_it_does_not_send_empty_mget_commands_to_redis":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_generates_MinIO_replica_compose_templates_without_embedding_secrets":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_computes_MinIO_free_space_and_catch_up_math_safely":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_wires_MinIO_replication_through_routes_and_bootstrap_snapshots":0.017,"P\\Tests\\Unit\\Selfserve\\SelfserveConditionEvaluatorTest::__pest_evaluable_it_evaluates_nested_v2_ALL_and_ANY_expression_trees_with_trace_output":0,"P\\Tests\\Unit\\Selfserve\\SelfserveConditionEvaluatorTest::__pest_evaluable_it_evaluates_v2_if__else_if__and_else_condition_branches_in_order":0,"P\\Tests\\Unit\\Selfserve\\SelfserveConditionEvaluatorTest::__pest_evaluable_it_evaluates_v2_case_expressions_against_question_values":0,"P\\Tests\\Unit\\Selfserve\\SelfserveConditionEvaluatorTest::__pest_evaluable_it_returns_false_and_traces_v2_condition_expression_cycles":0,"P\\Tests\\Unit\\Selfserve\\SelfserveConfigVersioningTest::__pest_evaluable_it_fails_validation_when_nested_conditions_form_cycles":0,"P\\Tests\\Unit\\Selfserve\\SelfserveConfigVersioningTest::__pest_evaluable_it_migrates_legacy_AND_and_OR_rules_into_grouped_v2_condition_expressions":0,"P\\Tests\\Unit\\Selfserve\\SelfserveConfigVersioningTest::__pest_evaluable_it_repairs_legacy_defaulted_always_task_gates_during_v2_normalization":0,"P\\Tests\\Unit\\Selfserve\\SelfserveConfigVersioningTest::__pest_evaluable_it_does_not_let_legacy_defaulted_always_task_gates_bypass_validation":0,"P\\Tests\\Unit\\Selfserve\\SelfserveConfigVersioningTest::__pest_evaluable_it_rejects_unsupported_legacy_task_target_rules_after_migration":0,"P\\Tests\\Unit\\Selfserve\\SelfserveConfigVersioningTest::__pest_evaluable_it_validates_v2_expressions_for_empty_used_conditions__missing_refs__invalid_operators__and_cycles":0,"P\\Tests\\Unit\\Selfserve\\SelfserveConfigVersioningTest::__pest_evaluable_it_validates_nested_v2_branch_and_case_expressions":0,"P\\Tests\\Unit\\Selfserve\\SelfserveInProgressWashAccessTest::__pest_evaluable_it_keeps_own_in_progress_self_serve_wash_details_visible_to_the_customer":0,"P\\Tests\\Unit\\Selfserve\\SelfserveInProgressWashAccessTest::__pest_evaluable_it_redacts_another_customers_in_progress_wash_details_during_customer_lane_polling":0,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_adds_vehicle_type_product_on_STOP_when_the_physical_machine_ON_signal_was_recorded__then_turns_off_cleaner_and_machine_relays":0.352,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_skips_vehicle_type_product_add_when_no_physical_machine_ON_signal_was_recorded_and_only_disables_configured_relays":0.02,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_does_not_use_selector_relay_online_status_as_machine_wash_billing_evidence":0.021,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_continues_STOP_when_exit_relay_dispatch_times_out_ambiguously":0.02,"P\\Tests\\Unit\\Selfserve\\SelfserveLaneStopFlowTest::__pest_evaluable_it_still_fails_STOP_for_non_timeout_exit_relay_errors":0.02,"P\\Tests\\Unit\\Selfserve\\SelfserveMachineSignalTest::__pest_evaluable_it_normalizes_Shelly_input_toggle_ON_events_as_machine_start_signals":0,"P\\Tests\\Unit\\Selfserve\\SelfserveMachineSignalTest::__pest_evaluable_it_normalizes_Shelly_switch_ON_events_and_nested_status_payloads":0,"P\\Tests\\Unit\\Selfserve\\SelfserveMachineSignalTest::__pest_evaluable_it_recognizes_Shelly_OFF_events_but_does_not_treat_them_as_billable_machine_starts":0,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_wires_local_edge_gateway_machine_ON_signal_monitor_endpoints":0.015,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_wires_lane_level_self_serve_toggles_through_lane_APIs__guest_payloads__and_edge_workspace_readiness":0.014,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_returns_authoritative_allowed_service_state_from_self_serve_session_summaries":0.006,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_filters_machine_button_tasks_out_of_self_serve_snapshots_when_MACHINE_is_not_allowed":0.006,"P\\Tests\\Unit\\Selfserve\\SelfserveRouteWiringTest::__pest_evaluable_it_blocks_new_self_serve_eligibility_and_session_sync_for_disabled_lanes":0.011,"P\\Tests\\Unit\\Selfserve\\SelfserveSchemaBootstrapCompatibilityTest::__pest_evaluable_it_adds_lane_level_self_serve_enablement_for_existing_department_lanes":0.003,"P\\Tests\\Unit\\Selfserve\\SelfserveSchemaBootstrapCompatibilityTest::__pest_evaluable_it_creates_canvas_only_self_serve_studio_layout_storage":0.003,"P\\Tests\\Unit\\Selfserve\\SelfserveSchemaBootstrapCompatibilityTest::__pest_evaluable_it_uses_mysql_safe_identifiers_for_self_serve_studio_virtual_hardware_storage":0.004,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_serializes_configurable_studio_actions_with_event__gate__scope__and_ordering_edges":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_validates_action_configuration_and_keeps_warnings_non_blocking":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_serializes_v2_condition_expressions_without_standalone_rule_nodes":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_serializes_branch_and_case_condition_expression_dependencies":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_keeps_runtime_on_published_v2_configs_and_leaves_draft_JSON_as_the_studio_edit_surface":0.011,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_surfaces_task_attachments_in_studio_graph__simulator__and_flow_responses":0.014,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_exposes_dynamic_images_and_referenced_machine_types_as_studio_lookup_choices":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_keeps_lane_management_fields_on_lane_scope_nodes":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_routes_studio_lane_graph_operations_through_department__lanes":0.005,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_projects_visible_question_answer_paths_into_grouped_task_service_and_signal_outcomes":0.001,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_truncates_path_outcome_projection_when_the_state_cap_is_reached":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_returns_complete_terminal_path_results_for_wide_question_trees_and_reports_progress":0.107,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_generates_and_merges_virtual_hardware_as_studio_only_relay_coverage":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_renders_virtual_gateway_nodes_and_task_service_edges_in_the_studio_graph":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_inserts_configured_action_signals_into_the_simulator_timeline_in_runtime_order":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_simulates_lane_scoped_wash_start_actions_for_property_gates_and_lane_entrance_ports":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_adds_ordered_simulator_signal_timeline_rows_for_virtual_hardware_dry_runs":0,"P\\Tests\\Unit\\Selfserve\\SelfserveWashFlowMachineAllowedWiringTest::__pest_evaluable_it_infers_legacy_defaulted_always_task_gates_from_condition__id_at_runtime":0,"P\\Tests\\Unit\\Selfserve\\SelfserveWashSessionStateTest::__pest_evaluable_it_treats_terminal_self_serve_wash_session_statuses_as_closed":0,"P\\Tests\\Unit\\Selfserve\\SelfserveWashSessionStateTest::__pest_evaluable_it_freezes_elapsed_self_serve_wash_minutes_at_completion_time":0,"P\\Tests\\Unit\\Subusers\\SubusersRouteManagementContractTest::__pest_evaluable_it_exposes_chauffeur_management_endpoints_on_the_subusers_route":0.007,"P\\Tests\\Unit\\Subusers\\SubusersRouteManagementContractTest::__pest_evaluable_it_includes_grant_management_fields_in_the_subusers_payload_builder":0.004,"P\\Tests\\Unit\\Subusers\\SubusersRouteManagementContractTest::__pest_evaluable_it_links_grant_disable_operations_to_SUBUSERS__DELETE_for_own_customer_managers":0.004,"P\\Tests\\Unit\\Subusers\\SubusersRouteManagementContractTest::__pest_evaluable_it_prevents_own_customer_managers_from_editing_driver_owned_account_profiles":0.004,"P\\Tests\\Unit\\Subusers\\SubusersRouteManagementContractTest::__pest_evaluable_it_only_allows_invite_resend_while_setup_is_still_pending":0.004,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusOpenApiSpecTest::__pest_evaluable_it_documents_the_superuser_system_status_snapshot_endpoint_in_openapi":0.007,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusOpenApiSpecTest::__pest_evaluable_it_defines_the_reusable_system_status_schemas_and_enums":0.006,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusRouteWiringTest::__pest_evaluable_it_registers_the_aggregated_superuser_system_status_endpoint_and_permission":0.007,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusRouteWiringTest::__pest_evaluable_it_keeps_the_legacy_database_status_endpoint_wired_through_the_shared_snapshot_service":0.003,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_reduces_overall_status_using_down_and_degraded_precedence":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_classifies_runtime_usage_percentages_consistently":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_reuses_cached_module_probes_only_when_the_ttl_is_still_valid_and_force_is_false":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_classifies_authenticated_http_probe_responses_conservatively with data set \"dataset \"success\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_classifies_authenticated_http_probe_responses_conservatively with data set \"dataset \"unauthorized\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_classifies_authenticated_http_probe_responses_conservatively with data set \"dataset \"forbidden\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_classifies_authenticated_http_probe_responses_conservatively with data set \"dataset \"rate limited\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_classifies_authenticated_http_probe_responses_conservatively with data set \"dataset \"server error\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_classifies_authenticated_http_probe_responses_conservatively with data set \"dataset \"no response\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_classifies_transport_errors_as_down":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_normalizes_and_deduplicates_warning_entries_for_snapshots":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_interprets_recaptcha_probe_payloads_safely with data set \"dataset \"dummy token rejected but credentials valid\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_interprets_recaptcha_probe_payloads_safely with data set \"dataset \"invalid secret is down\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_interprets_recaptcha_probe_payloads_safely with data set \"dataset \"unexpected validation errors degrade\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_builds_the_expected_http_probe_requests_for_newly_supported_modules with data set \"dataset \"recaptcha\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_builds_the_expected_http_probe_requests_for_newly_supported_modules with data set \"dataset \"email\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_builds_the_expected_http_probe_requests_for_newly_supported_modules with data set \"dataset \"motorapi\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_builds_the_expected_http_probe_requests_for_newly_supported_modules with data set \"dataset \"fxratesapi\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_builds_the_expected_http_probe_requests_for_newly_supported_modules with data set \"dataset \"weatherapi\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_builds_the_expected_http_probe_requests_for_newly_supported_modules with data set \"dataset \"workfeed\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_builds_the_expected_http_probe_requests_for_newly_supported_modules with data set \"dataset \"gatewayapi\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_builds_the_expected_http_probe_requests_for_newly_supported_modules with data set \"dataset \"xlvask\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_builds_the_expected_http_probe_requests_for_newly_supported_modules with data set \"dataset \"limble\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_builds_the_expected_http_probe_requests_for_newly_supported_modules with data set \"dataset \"license plate recognizer\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_builds_the_expected_http_probe_requests_for_newly_supported_modules with data set \"dataset \"bird\"\"":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_uses_runtime_economic_credentials_for_the_economic_probe":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_returns_down_without_attempting_economic_http_calls_when_runtime_credentials_are_missing":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_reports_backup_probe_failures_from_local_validation":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_returns_configured_for_shelly_when_no_known_device_id_is_available_for_probing":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_builds_an_authenticated_shelly_status_probe_when_a_known_device_id_exists":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_validates_selfserve_schema_and_minute_product_configuration":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_reports_invalid_selfserve_minute_configuration_before_touching_the_schema":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_reports_missing_selfserve_minute_products":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_surfaces_selfserve_bootstrap_failures":0,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_adds_localization_metadata_for_disabled_and_missing_config_modules":20.775,"P\\Tests\\Unit\\SystemStatus\\SuperuserSystemStatusServiceTest::__pest_evaluable_it_marks_newly_supported_modules_as_probe_backed_and_leaves_only_truly_unsupported_modules_as_configuration_only":19.61,"P\\Tests\\Unit\\SystemStatus\\SystemSessionActivityTrackerTest::__pest_evaluable_it_detects_device_types_from_common_user_agents":0,"P\\Tests\\Unit\\SystemStatus\\SystemSessionActivityTrackerTest::__pest_evaluable_it_treats_recent_sessions_as_active_within_the_configured_activity_window":0,"P\\Tests\\Unit\\SystemStatus\\SystemSessionActivityTrackerTest::__pest_evaluable_it_converts_database_utc_datetimes_into_timezone_aware_iso_strings":0,"P\\Tests\\Unit\\SystemStatus\\SystemSessionActivityTrackerTest::__pest_evaluable_it_treats_timezone_aware_iso_timestamps_as_active_using_absolute_time":0,"P\\Tests\\Unit\\Tooling\\LegacyTestInventoryTest::__pest_evaluable_it_keeps_every_legacy_PHP_test_accounted_for_in_the_manifest":0.515,"P\\Tests\\Unit\\Tooling\\MySqlSchemaCompatibilityTest::__pest_evaluable_it_keeps_schema_bootstrap_SQL_compatible_with_the_MySQL_runner":6.404,"P\\Tests\\Unit\\Users\\UsersCustomerNamesCacheTest::__pest_evaluable_it_allows_callers_to_resolve_customer_names_without_e_conomic_fallback":0.003,"P\\Tests\\Unit\\Users\\UsersCustomerNamesCacheTest::__pest_evaluable_it_returns_an_empty_customer_name_map_without_touching_cache_for_empty_input":0,"P\\Tests\\Unit\\Users\\UsersCustomerNamesCacheTest::__pest_evaluable_it_returns_no_rows_for_empty_array_field_filters":0,"P\\Tests\\Unit\\Users\\UsersRedisNamespaceSafetyTest::__pest_evaluable_it_keeps_users_Redis_access_namespace_safe":0.004,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherCacheRuntimeBehaviorTest::__pest_evaluable_it_builds_department_weather_preload_targets_in_cli_without_a_request_uri":0.001,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherPreloadCronWiringTest::__pest_evaluable_it_registers_and_implements_cron_warming_for_workfeed_employee_name_cache":0.007,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherStatusTargetsTest::__pest_evaluable_it_aggregates_multi_department_slot_statuses_using_worst_severity_when_any_department_is_unhealthy":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherStatusTargetsTest::__pest_evaluable_it_aggregates_all_unhealthy_multi_department_slot_statuses_as_unhealthy":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherStatusTargetsTest::__pest_evaluable_it_returns_unknown_when_aggregated_multi_department_slot_targets_are_missing":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherStatusTargetsTest::__pest_evaluable_it_returns_unknown_when_aggregated_multi_department_slot_has_no_evaluable_hours":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherStatusTargetsTest::__pest_evaluable_it_returns_unknown_when_aggregated_multi_department_slot_has_not_started_yet":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherTargetsRouteWiringTest::__pest_evaluable_it_registers_department_weather_hour_details_route_with_weather_read_and_department_access_checks":0.004,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_calculates_weather_hour_contributions_grouped_per_employee_for_a_slot":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_calculates_weather_hour_contributions_for_canonical_nested_workfeed_employee_schema":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_extracts_weather_employee_identity_from_supported_shift_payload_shapes":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_prefers_canonical_workfeed_employee_schema_fields_over_generic_employee_names":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_does_not_use_workfeed_schema_name_fields_as_employee_ids":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_returns_a_null_employee_name_when_no_workfeed_employee_name_is_available":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_resolves_missing_workfeed_employee_names_from_the_employees_endpoint":0.037,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_filters_employee_hour_rows_that_cannot_be_resolved_to_a_workfeed_schema_name":0,"P\\Tests\\Unit\\Workfeed\\DepartmentWeatherWorkfeedHoursTest::__pest_evaluable_it_resolves_employee_display_name_from_cache_when_shift_payload_lacks_a_name":0,"P\\Tests\\Unit\\Workfeed\\WorkfeedEmployeeNameFormatterTest::__pest_evaluable_it_formats_workfeed_employee_display_names_from_the_documented_firstname_lastname_schema":0,"P\\Tests\\Unit\\Workfeed\\WorkfeedEmployeeNameFormatterTest::__pest_evaluable_it_prefers_workfeed_schema_names_over_generic_display_name_fields":0,"P\\Tests\\Unit\\Workfeed\\WorkfeedEmployeeNameFormatterTest::__pest_evaluable_it_falls_back_to_legacy_display_name_fields_when_schema_names_are_absent":0,"P\\Tests\\Unit\\Workfeed\\WorkfeedEmployeeNameFormatterTest::__pest_evaluable_it_ignores_placeholder_workfeed_display_names":0,"P\\Tests\\Unit\\Workfeed\\WorkfeedEmployeeNameFormatterTest::__pest_evaluable_it_ignores_employee_id_placeholder_display_names_when_the_id_is_known":0,"P\\Tests\\Unit\\XLVask\\XLVaskAutomationServiceTest::__pest_evaluable_it_normalizes_registrations_for_XL_Vask_automation_signatures":0,"P\\Tests\\Unit\\XLVask\\XLVaskAutomationServiceTest::__pest_evaluable_it_builds_stable_XL_Vask_automation_item_signatures":0,"P\\Tests\\Unit\\XLVask\\XLVaskAutomationServiceTest::__pest_evaluable_it_normalizes_persisted_XL_Vask_usage_log_rows_before_helper_hydration":0,"P\\Tests\\Unit\\XLVask\\XLVaskAutomationServiceTest::__pest_evaluable_it_builds_stable_OpenAI_cache_keys_for_identical_automation_input":0,"P\\Tests\\Unit\\XLVask\\XLVaskAutomationServiceTest::__pest_evaluable_it_changes_OpenAI_cache_keys_when_automation_eligibility_input_changes":0,"P\\Tests\\Unit\\XLVask\\XLVaskAutomationServiceTest::__pest_evaluable_it_declares_a_persistent_OpenAI_cache_table_for_XL_Vask_automation":0.003,"P\\Tests\\Unit\\XLVask\\XLVaskAutomationServiceTest::__pest_evaluable_it_declares_cached_amount_summary_columns_for_XL_Vask_usage_logs":0.003,"P\\Tests\\Unit\\XLVask\\XLVaskAutomationServiceTest::__pest_evaluable_it_scores_same_day_orders_with_matching_XL_Vask_products_and_extra_add_ons_as_attach_suggestions":0,"P\\Tests\\Unit\\XLVask\\XLVaskAutomationServiceTest::__pest_evaluable_it_does_not_score_an_order_with_only_the_primary_product_as_a_matching_add_on_attachment":0,"P\\Tests\\Unit\\XLVask\\XLVaskUsageLogHelperTest::__pest_evaluable_it_accepts_persisted_ignore_metadata_from_xlvask_usage_log_rows":0.017,"P\\Tests\\Unit\\XLVask\\XLVaskUsageLogHelperTest::__pest_evaluable_it_calculates_XL_Vask_amount_summaries_without_hydrating_order_item_previews":0.005,"P\\Tests\\Unit\\XLVask\\XLVaskUsageRouteContractTest::__pest_evaluable_it_exposes_direct_linked_order_metadata_on_XL_Vask_usage_order_rows":0.003,"P\\Tests\\Unit\\XLVask\\XLVaskUsageRouteContractTest::__pest_evaluable_it_returns_cached_amount_summaries_on_XL_Vask_usage_order_rows_without_widening_the_usage_log_object_payload":0.003,"P\\Tests\\Integration\\DailyReports\\DepartmentDailyReportComplaintsIntegrationTest::__pest_evaluable_it_counts_complaint_rows_by_department_and_created__at_reporting_range":0.284,"P\\Tests\\Integration\\DailyReports\\DepartmentDailyReportComplaintsIntegrationTest::__pest_evaluable_it_updates_and_deletes_complaint_rows":0.005,"P\\Tests\\Integration\\DailyReports\\DepartmentDailyReportComplaintsIntegrationTest::__pest_evaluable_it_parses_created__by__name_from_the_users_table":0.005,"P\\Tests\\Integration\\DailyReports\\DepartmentOutsideHoursStatisticsServiceIntegrationTest::__pest_evaluable_it_integrates_orders__xlvask__and_self_serve_into_one_outside_hours_summary_with_missing_hours_diagnostics":0.016,"P\\Tests\\Integration\\Invoicing\\EconomicTransferQueueIntegrationTest::__pest_evaluable_it_processes_only_collected_invoice_jobs_and_respects_the_manual_batch_limit":0.014,"P\\Tests\\Integration\\SystemStatus\\SuperuserSystemStatusInfrastructureProbeTest::__pest_evaluable_it_can_probe_the_configured_database_in_integration_mode":0,"P\\Tests\\Integration\\SystemStatus\\SuperuserSystemStatusInfrastructureProbeTest::__pest_evaluable_it_can_probe_redis_in_integration_mode_when_configured":0,"P\\Tests\\Integration\\SystemStatus\\SuperuserSystemStatusInfrastructureProbeTest::__pest_evaluable_it_can_probe_minio_in_integration_mode_when_configured":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_redacts_sensitive_release_timeline_payload_fields_recursively":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_verifies_GitHub_sha256_webhook_signatures":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_normalizes_GitHub_repository_identifiers_for_private_repository_access_checks":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_defines_release_manager_schema__routes__permissions__and_system_status_integration_hooks":0.033,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_summarizes_failed_deployments_and_blocks_promotion_until_a_deployment_succeeds":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_uses_the_selected_Coolify_project_and_resolves_server_UUID_from_the_instance_default":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_supports_isolated_stack_mode_and_names_new_Coolify_services_explicitly":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_creates_Coolify_service_payloads_from_raw_compose_without_a_service_type":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_normalizes_Coolify_API_base_URLs_to_the_v1_API_root":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_parses_generated_env_files_for_Coolify_service_env_bulk_updates":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_prefers_public_Coolify_server_hosts_over_Docker_local_addresses":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_blocks_planned_downtime_operations_against_active_replication_primaries":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_allows_failed_Coolify_replica_targets_to_be_removed_after_the_service_disappears":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_retries_Coolify_maintenance_while_linked_replication_provisioning_is_still_incomplete":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_plans_Hetzner_load_balancer_target_and_service_drift_without_mutating_state":0.017,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_does_not_plan_removal_of_the_last_Hetzner_load_balancer_target":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_plans_removal_only_for_disabled_or_deleted_Hetzner_load_balancer_targets":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_defines_Coolify_schema__route_permissions__and_replication_integration_hooks":0.066,"P\\Tests\\Unit\\ErrorReports\\ErrorReportTest::__pest_evaluable_it_redacts_sensitive_error_report_payload_fields_recursively":0,"P\\Tests\\Unit\\ErrorReports\\ErrorReportTest::__pest_evaluable_it_validates_supported_screenshot_data_uris":0,"P\\Tests\\Unit\\ErrorReports\\ErrorReportTest::__pest_evaluable_it_defines_error_report_schema__routes__permissions__storage__and_OpenAPI_docs":0.022,"P\\Tests\\Unit\\Http\\ResponseRequestParametersTest::__pest_evaluable_it_reads_JSON_payloads_for_DELETE_request_parameter_arrays":0,"P\\Tests\\Unit\\Http\\ResponseRequestParametersTest::__pest_evaluable_it_keeps_DELETE_query_parameters_when_no_JSON_body_is_present":0,"P\\Tests\\Unit\\Infrastructure\\CorsReleaseHeadersTest::__pest_evaluable_it_allows_release_telemetry_headers_at_PHP_served_CORS_entry_points":0.013,"P\\Tests\\Unit\\Orders\\OrderBookingsCompletionDedupTest::__pest_evaluable_it_uses_the_linked_pos_order_wash_certificate_item_added_during_mobile_completion":0,"P\\Tests\\Unit\\Replication\\ReplicaFailoverManagerTest::__pest_evaluable_it_normalizes_failover_config_defaults_and_per_kind_enablement":0,"P\\Tests\\Unit\\Replication\\ReplicaFailoverManagerTest::__pest_evaluable_it_requires_strict_fresh_100_percent_replica_status_for_candidates":0,"P\\Tests\\Unit\\Replication\\ReplicaFailoverManagerTest::__pest_evaluable_it_selects_the_freshest_eligible_replica_for_failover":0,"P\\Tests\\Unit\\Replication\\ReplicaFailoverManagerTest::__pest_evaluable_it_promotes_enabled_startup_dependencies_from_snapshot_in_dependency_order":0.004,"P\\Tests\\Unit\\Replication\\ReplicaFailoverManagerTest::__pest_evaluable_it_does_not_promote_a_disabled_dependency_during_startup_failover":0.001,"P\\Tests\\Unit\\Replication\\ReplicaFailoverManagerTest::__pest_evaluable_it_wires_the_failover_module_config_endpoint_and_promotion_paths":0.029,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_can_embed_primary_admin_credentials_in_generated_MariaDB_replica_env_files":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_keeps_operational_and_derived_tables_schema_only_during_MariaDB_seeding_and_replication":0.005,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_supports_metadata_only_replication_host_renames":0.005,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_keeps_MinIO_backup_replicas_bounded_to_the_recent_backup_window":0.012,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_prefills_MinIO_replica_compose_primary_values_from_current_config_when_available":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_allows_the_MinIO_client_binary_to_be_configured_explicitly":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_supports_MinIO_client_runtime_fallback_configuration":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_extracts_host_specific_MariaDB_replication_account_denials":0,"P\\Tests\\Unit\\Replication\\ReplicationManagerStatusTest::__pest_evaluable_it_identifies_stopped_database_replication_threads_as_a_restartable_status":0,"P\\Tests\\Unit\\Scanner\\ModuleScannerRouteTest::__pest_evaluable_it_returns_no_plate_LPR_results_without_a_failed_HTTP_status":0.005,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_does_not_invent_GHCR_images_for_Coolify_service_payloads":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_keeps_release_branch_services_out_of_the_production_Coolify_environment_except_beta":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_creates_Coolify_GitHub_App_application_payloads_so_pulls_use_the_app_token":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_does_not_treat_an_existing_Coolify_service_as_an_application_just_because_a_GitHub_App_UUID_is_stored":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_can_use_the_Coolify_instance_default_GitHub_App_when_source_targets_do_not_store_it_yet":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_updates_existing_frontend_Coolify_applications_away_from_legacy_Nixpacks_detection":0,"P\\Tests\\Unit\\Auth\\EconomicCreateCustomerResponseTest::__pest_evaluable_it_adds_supported_CVR_company_fields_to_the_e_conomic_customer_payload":0.022,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_keeps_release_channel_runtime_availability_independent_from_channel_URLs":0.007,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_chooses_a_requested_runtime_channel_only_when_it_is_available_to_the_principal":0.199,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_normalizes_release_assignment_subject_suggestions_without_leaking_private_fields":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_keeps_GitHub_commit_timestamps_in_public_release_manager_commit_payloads":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_requires_non_default_release_channel_runtime_URLs_and_preserves_load_balancer_paths":0.013,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_exposes_release_version_git_commit_metadata_for_runtime_channel_cards":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_builds_gateway_API_auto_provision_context_for_connected_Coolify_servers":0.001,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_adds_explicit_Coolify_application_route_labels_for_gateway_API_domains":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_builds_explicit_Coolify_application_route_labels_for_release_API_targets":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_uses_the_self_contained_Coolify_API_Dockerfile_for_API_applications":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_isolates_and_restores_Hetzner_load_balancer_IP_targets_for_gateway_certificate_bootstrap":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_requires_gateway_ping_probes_to_return_the_API_ping_contract":0,"P\\Tests\\Unit\\Tooling\\ComposerEntrypointTest::__pest_evaluable_it_checks_PSR_HTTP_message_interfaces_before_trusting_a_Composer_vendor_tree":0,"P\\Tests\\Unit\\Release\\ReleaseManagerStatusOverviewTest::__pest_evaluable_it_marks_a_channel_ready_when_all_release_services_are_healthy":0,"P\\Tests\\Unit\\Release\\ReleaseManagerStatusOverviewTest::__pest_evaluable_it_reports_non_default_channels_missing_bundles__versions__and_URLs_as_blocking_missing_values":0.024,"P\\Tests\\Unit\\Release\\ReleaseManagerStatusOverviewTest::__pest_evaluable_it_surfaces_failed_latest_deployments_as_critical_promotion_blockers":0,"P\\Tests\\Unit\\Release\\ReleaseManagerStatusOverviewTest::__pest_evaluable_it_flags_isolated_stacks_that_are_missing_database_Redis_and_MinIO_services":0,"P\\Tests\\Unit\\Release\\ReleaseManagerStatusOverviewTest::__pest_evaluable_it_maps_degraded_Coolify_targets_and_reconcile_failures_to_release_service_issues":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_plans_Hetzner_load_balancer_service_health_check_drift_updates":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_returns_structured_errors_for_failed_gateway_certificate_bootstrap_and_verification":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_captures_release_request_context_from_headers_and_runtime_query_parameters":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_normalizes_channel_prefixed_API_ingress_paths_before_route_dispatch":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_creates_frontend_Coolify_GitHub_App_application_payloads_with_the_release_Dockerfile":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_builds_gateway_frontend_auto_provision_context_with_the_release_Dockerfile":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_allows_explicit_runtime_selection_of_any_enabled_release_channel":0.289,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_chooses_requested_runtime_channels_from_available_channels_or_enabled_channel_slugs":0,"P\\Tests\\Unit\\Coolify\\CoolifyManagerTest::__pest_evaluable_it_normalizes_gateway_probe_paths_for_release_gateway_health_checks":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_resolves_release_deployment_endpoints_from_manual_overrides__URLs__health_checks__and_gateway_defaults":0,"P\\Tests\\Unit\\Release\\ReleaseManagerStatusOverviewTest::__pest_evaluable_it_does_not_report_frontend_or_API_URLs_missing_when_target_auto_endpoints_are_resolvable":0,"P\\Tests\\Unit\\Release\\ReleaseManagerStatusOverviewTest::__pest_evaluable_it_offers_a_release_bundle_action_when_exactly_one_deployed_bundle_is_eligible":0.008,"P\\Tests\\Unit\\Release\\ReleaseManagerStatusOverviewTest::__pest_evaluable_it_offers_application_target_preparation_for_path_routed_Coolify_failures":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_maps_the_public_master_API_prefix_to_the_stable_release_channel":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_uses_master_as_the_public_route_slug_for_the_stable_release_channel":0,"P\\Tests\\Unit\\Release\\ReleaseManagerStatusOverviewTest::__pest_evaluable_it_does_not_block_channels_on_unhealthy_data_targets_when_data_services_are_production_shared":0,"P\\Tests\\Unit\\Release\\ReleaseManagerStatusOverviewTest::__pest_evaluable_it_ignores_missing_legacy_bundles_but_still_blocks_on_missing_versions_and_URLs":0,"P\\Tests\\Unit\\Release\\ReleaseManagerStatusOverviewTest::__pest_evaluable_it_marks_a_branch_based_channel_ready_without_a_release_bundle_when_app_versions_and_URLs_exist":0,"P\\Tests\\Unit\\Release\\ReleaseManagerStatusOverviewTest::__pest_evaluable_it_does_not_surface_legacy_release_bundle_actions_as_readiness_blockers":0,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_adds_exact_hidden_question__skipped_action__signal__and_button_decision_causes":0,"P\\Tests\\Api\\OrderBookingsCompletionApiTest::__pest_evaluable_it_rejects_standalone_order_booking_completion_outside_POS":5.621,"P\\Tests\\Api\\OrderBookingsCompletionApiTest::__pest_evaluable_it_allows_linked_POS_order_booking_completion_for_mobile_POS_compatibility":4.121,"P\\Tests\\Api\\OrderBookingsCompletionApiTest::__pest_evaluable_it_accepts_numeric_safety_seal_strings_when_completing_a_linked_POS_order_booking":4.366,"P\\Tests\\Api\\OrderBookingsCompletionApiTest::__pest_evaluable_it_disables_the_legacy_complete_wash_without_certificate_route":1.122,"P\\Tests\\Api\\OrderBookingsUpdateApiTest::__pest_evaluable_it_detaches_an_order_booking_and_clears_the_matching_order_link":5.559,"P\\Tests\\Api\\OrderBookingsUpdateApiTest::__pest_evaluable_it_keeps_the_linked_order_when_order__id_is_omitted_from_an_order_booking_update":5.22,"P\\Tests\\Unit\\DynamicImages\\DepartmentLaneDynamicImageRouteTest::__pest_evaluable_it_accepts_ordered_dynamic_image_button_tokens_including_program_picker_reset_start_and_zero":0.003,"P\\Tests\\Unit\\Selfserve\\SelfserveStudioGraphTest::__pest_evaluable_it_adds_program_picker_before_mapped_machine_buttons_in_simulator_debug_decisions":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_verifies_CI_release_gate_bearer_tokens_from_dedicated_release_credentials":0,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_only_chooses_requested_runtime_channels_from_channels_available_to_the_principal":0.001,"P\\Tests\\Unit\\ReleaseManager\\ReleaseManagerTest::__pest_evaluable_it_ignores_explicit_runtime_selection_for_channels_outside_the_principal_channel_set":0}} \ No newline at end of file diff --git a/services/nginx/app/build/logs/api-server.err.log b/services/nginx/app/build/logs/api-server.err.log index b3720cf6..094e7aaf 100644 --- a/services/nginx/app/build/logs/api-server.err.log +++ b/services/nginx/app/build/logs/api-server.err.log @@ -12120,3 +12120,87 @@ [Mon Apr 27 16:09:11 2026] 127.0.0.1:40070 Closing [Mon Apr 27 16:09:12 2026] 127.0.0.1:41964 Accepted [Mon Apr 27 16:09:54 2026] 127.0.0.1:41964 Closing +[Tue May 26 09:18:49 2026] PHP 8.2.15 Development Server (http://127.0.0.1:35029) started +[Tue May 26 09:18:49 2026] 127.0.0.1:35080 Accepted +[Tue May 26 09:18:53 2026] 127.0.0.1:35080 Closing +[Tue May 26 09:18:53 2026] 127.0.0.1:35088 Accepted +[Tue May 26 09:18:56 2026] 127.0.0.1:35088 Closing +[Tue May 26 09:18:58 2026] 127.0.0.1:39708 Accepted +[Tue May 26 09:19:01 2026] 127.0.0.1:39708 Closing +[Tue May 26 09:19:02 2026] 127.0.0.1:39714 Accepted +[Tue May 26 09:19:06 2026] 127.0.0.1:39714 Closing +[Tue May 26 09:19:05 2026] 127.0.0.1:38256 Accepted +[Tue May 26 09:19:08 2026] 127.0.0.1:38256 Closing +[Tue May 26 09:19:09 2026] 127.0.0.1:38268 Accepted +[Tue May 26 09:19:12 2026] 127.0.0.1:38268 Closing +[Tue May 26 09:19:13 2026] 127.0.0.1:37926 Accepted +[Tue May 26 09:19:17 2026] 127.0.0.1:37926 Closing +[Tue May 26 09:21:24 2026] PHP 8.2.15 Development Server (http://127.0.0.1:33343) started +[Tue May 26 09:21:25 2026] 127.0.0.1:53732 Accepted +[Tue May 26 09:21:27 2026] 127.0.0.1:53732 Closing +[Tue May 26 09:21:27 2026] 127.0.0.1:55472 Accepted +[Tue May 26 09:21:30 2026] 127.0.0.1:55472 Closing +[Tue May 26 09:21:32 2026] 127.0.0.1:55484 Accepted +[Tue May 26 09:21:35 2026] 127.0.0.1:55484 Closing +[Tue May 26 09:21:36 2026] 127.0.0.1:44478 Accepted +[Tue May 26 09:21:40 2026] 127.0.0.1:44478 Closing +[Tue May 26 09:21:41 2026] 127.0.0.1:44486 Accepted +[Tue May 26 09:21:46 2026] 127.0.0.1:44486 Closing +[Tue May 26 09:21:47 2026] 127.0.0.1:50508 Accepted +[Tue May 26 09:21:53 2026] 127.0.0.1:50508 Closing +[Tue May 26 09:21:55 2026] 127.0.0.1:42034 Accepted +[Tue May 26 09:22:00 2026] 127.0.0.1:42034 Closing +[Tue May 26 09:23:59 2026] PHP 8.2.15 Development Server (http://127.0.0.1:41083) started +[Tue May 26 09:23:59 2026] 127.0.0.1:45896 Accepted +[Tue May 26 09:24:04 2026] 127.0.0.1:45896 Closing +[Tue May 26 09:24:04 2026] 127.0.0.1:45908 Accepted +[Tue May 26 09:24:07 2026] 127.0.0.1:45908 Closing +[Tue May 26 09:25:43 2026] PHP 8.2.15 Development Server (http://127.0.0.1:38485) started +[Tue May 26 09:25:43 2026] 127.0.0.1:34288 Accepted +[Tue May 26 09:25:47 2026] 127.0.0.1:34288 Closing +[Tue May 26 09:25:47 2026] 127.0.0.1:34290 Accepted +[Tue May 26 09:25:51 2026] 127.0.0.1:34290 Closing +[Tue May 26 09:25:51 2026] 127.0.0.1:41802 Accepted +[Tue May 26 09:25:55 2026] 127.0.0.1:41802 Closing +[Tue May 26 09:27:23 2026] PHP 8.2.15 Development Server (http://127.0.0.1:37463) started +[Tue May 26 09:27:24 2026] 127.0.0.1:43206 Accepted +[Tue May 26 09:27:26 2026] 127.0.0.1:43206 Closing +[Tue May 26 09:27:26 2026] 127.0.0.1:43212 Accepted +[Tue May 26 09:27:33 2026] 127.0.0.1:43212 Closing +[Tue May 26 09:27:34 2026] 127.0.0.1:51102 Accepted +[Tue May 26 09:27:39 2026] 127.0.0.1:51102 Closing +[Tue May 26 09:28:26 2026] PHP 8.2.15 Development Server (http://127.0.0.1:46559) started +[Tue May 26 09:28:26 2026] 127.0.0.1:59372 Accepted +[Tue May 26 09:28:28 2026] 127.0.0.1:59372 Closing +[Tue May 26 09:28:28 2026] 127.0.0.1:59378 Accepted +[Tue May 26 09:28:30 2026] 127.0.0.1:59378 Closing +[Tue May 26 09:28:31 2026] 127.0.0.1:54846 Accepted +[Tue May 26 09:28:31 2026] 127.0.0.1:54846 Closing +[Tue May 26 09:28:33 2026] 127.0.0.1:54850 Accepted +[Tue May 26 09:28:34 2026] 127.0.0.1:54850 Closing +[Tue May 26 09:28:35 2026] 127.0.0.1:54854 Accepted +[Tue May 26 09:28:36 2026] 127.0.0.1:54854 Closing +[Tue May 26 09:28:36 2026] 127.0.0.1:54864 Accepted +[Tue May 26 09:28:41 2026] 127.0.0.1:54864 Closing +[Tue May 26 09:28:42 2026] 127.0.0.1:52868 Accepted +[Tue May 26 09:28:46 2026] 127.0.0.1:52868 Closing +[Tue May 26 09:30:14 2026] PHP 8.2.15 Development Server (http://127.0.0.1:41205) started +[Tue May 26 09:30:14 2026] 127.0.0.1:56928 Accepted +[Tue May 26 09:30:15 2026] 127.0.0.1:56928 Closing +[Tue May 26 09:30:15 2026] 127.0.0.1:56938 Accepted +[Tue May 26 09:30:18 2026] 127.0.0.1:56938 Closing +[Tue May 26 09:30:49 2026] PHP 8.2.15 Development Server (http://127.0.0.1:44523) started +[Tue May 26 09:30:49 2026] 127.0.0.1:54004 Accepted +[Tue May 26 09:30:52 2026] 127.0.0.1:54004 Closing +[Tue May 26 09:30:52 2026] 127.0.0.1:38720 Accepted +[Tue May 26 09:30:51 2026] 127.0.0.1:38720 Closing +[Tue May 26 09:30:53 2026] 127.0.0.1:38734 Accepted +[Tue May 26 09:30:56 2026] 127.0.0.1:38734 Closing +[Tue May 26 09:30:57 2026] 127.0.0.1:38738 Accepted +[Tue May 26 09:31:00 2026] 127.0.0.1:38738 Closing +[Tue May 26 09:31:01 2026] 127.0.0.1:38278 Accepted +[Tue May 26 09:31:02 2026] 127.0.0.1:38278 Closing +[Tue May 26 09:31:03 2026] 127.0.0.1:38284 Accepted +[Tue May 26 09:31:07 2026] 127.0.0.1:38284 Closing +[Tue May 26 09:31:08 2026] 127.0.0.1:38290 Accepted +[Tue May 26 09:31:12 2026] 127.0.0.1:38290 Closing diff --git a/services/nginx/app/classes/release_manager.php b/services/nginx/app/classes/release_manager.php index 3b5ab63e..0e89f90f 100644 --- a/services/nginx/app/classes/release_manager.php +++ b/services/nginx/app/classes/release_manager.php @@ -10,6 +10,19 @@ class release_manager { private const APPS = ['frontend', 'api']; private const DEFAULT_BRANCH = 'master'; + private const RELEASE_ROUTE_SLUGS = [ + 'stable' => 'master', + 'master' => 'master', + 'beta' => 'beta', + 'canary' => 'canary', + 'internal' => 'internal', + ]; + private const RELEASE_ROUTE_CHANNELS = [ + 'master' => 'stable', + 'beta' => 'beta', + 'canary' => 'canary', + 'internal' => 'internal', + ]; private const SERVICE_SET_MODES = ['attach_existing', 'clone_existing', 'fresh_empty', 'isolated_stack']; private const STACK_DATA_KINDS = ['database', 'redis', 'minio']; private const RELEASE_STATUS_SERVICES = ['frontend', 'api', 'database', 'redis', 'minio']; @@ -98,12 +111,13 @@ class release_manager return []; } - $channelSlug = self::safeSlug((string)$matches[1]); + $routeSlug = self::safeSlug((string)$matches[1]); + $channelSlug = self::channelSlugForRoute($routeSlug); $enabled = array_flip(array_values(array_filter(array_map( static fn(mixed $value): string => self::safeSlug((string)$value), $enabledChannelSlugs )))); - if ($channelSlug === '' || !isset($enabled[$channelSlug])) { + if ($routeSlug === '' || $channelSlug === '' || !isset($enabled[$channelSlug])) { return []; } @@ -127,17 +141,37 @@ class release_manager $context['original_request_uri'] = $context['original_request_uri'] ?: $requestUri; $context['normalized_request_uri'] = $normalizedUri; $context['requested_channel'] = $channelSlug; + $context['release_route_slug'] = $routeSlug; $context['ingress_prefix_stripped'] = true; $GLOBALS['RELEASE_REQUEST_CONTEXT'] = $context; return [ 'channel_slug' => $channelSlug, + 'route_slug' => $routeSlug, 'original_request_uri' => $requestUri, 'normalized_request_uri' => $normalizedUri, 'normalized_path' => $normalizedPath, ]; } + public static function routeSlugForChannel(string $channelSlug): string + { + $slug = self::safeSlug($channelSlug); + if ($slug === '') { + return ''; + } + return self::RELEASE_ROUTE_SLUGS[$slug] ?? $slug; + } + + public static function channelSlugForRoute(string $routeSlug): string + { + $slug = self::safeSlug($routeSlug); + if ($slug === '') { + return ''; + } + return self::RELEASE_ROUTE_CHANNELS[$slug] ?? $slug; + } + public static function moduleKeys(): array { return self::MODULE_KEYS; @@ -166,6 +200,28 @@ class release_manager return hash_equals($expected, $signatureHeader); } + public function verifyReleaseGateToken(string $token): bool + { + $token = trim($token); + if ($token === '') { + return false; + } + + $expected = trim((string)(getenv('RELEASE_MANAGER_GATE_TOKEN') ?: ($_SERVER['RELEASE_MANAGER_GATE_TOKEN'] ?? ''))); + if ($expected === '') { + $expected = trim((string)$this->moduleConfigValue('ReleaseManager', 'release_gate_token', '')); + } + if ($expected !== '' && str_starts_with($expected, 'twsec:v1:') && class_exists(replication_secret_box::class)) { + try { + $expected = replication_secret_box::decrypt($expected); + } catch (Throwable) { + $expected = ''; + } + } + + return $expected !== '' && hash_equals($expected, $token); + } + public static function normalizeGithubRepositoryName(string $value): string { $repository = trim($value); @@ -386,6 +442,7 @@ class release_manager $urls = $this->releaseRuntimeUrls($channel, $versions); return [ + 'source' => 'deployment', 'generated_at' => date('c'), 'trace_id' => $this->requestTraceId(), 'channel' => $this->publicRuntimeChannel($channel), @@ -427,6 +484,7 @@ class release_manager $urls = $this->releaseRuntimeUrls($channel, $versions); return [ + 'source' => 'deployment', 'generated_at' => date('c'), 'trace_id' => $this->requestTraceId(), 'channel' => $this->publicRuntimeChannel($channel), @@ -458,6 +516,7 @@ class release_manager $urls = $this->releaseRuntimeUrls($channel, $versions); return [ + 'source' => 'deployment', 'generated_at' => date('c'), 'trace_id' => $this->requestTraceId(), 'channel' => $this->publicRuntimeChannel($channel), @@ -495,6 +554,11 @@ class release_manager 'service_sets' => $this->listServiceSets(), 'bundles' => $this->listBundles(25), 'deployments' => $this->listDeployments(25), + 'operations' => $this->listOperations(['limit' => 20]), + 'data_services' => $this->releaseDataServicesSummary(), + 'replication_policy' => $this->releaseReplicationPolicySummary(), + 'coolify' => $this->releaseCoolifySummary(), + 'failover' => $this->releaseFailoverSummary(), 'timeline' => $this->timelineSummary(), 'module_health' => $this->latestModuleHealth(), 'module_keys' => self::MODULE_KEYS, @@ -511,6 +575,1237 @@ class release_manager return $this->releaseSuggestions(); } + public function listOperations(array $filters = []): array + { + if (!release_manager_schema_bootstrap::tablesExist()) { + return []; + } + + $limit = max(1, min(100, (int)($filters['limit'] ?? 50))); + $where = []; + $types = ''; + $params = []; + + $channelId = $this->nullablePositiveInt($filters['channel_id'] ?? null); + if ($channelId !== null) { + $where[] = 'r.channel_id = ?'; + $types .= 'i'; + $params[] = $channelId; + } + + $operationType = self::safeIdentifier((string)($filters['operation_type'] ?? $filters['type'] ?? ''), 64); + if ($operationType !== '') { + $where[] = 'r.operation_type = ?'; + $types .= 's'; + $params[] = $operationType; + } + + $status = self::safeIdentifier((string)($filters['status'] ?? ''), 32); + if ($status !== '') { + $where[] = 'r.status = ?'; + $types .= 's'; + $params[] = $status; + } + + $whereSql = $where !== [] ? 'WHERE ' . implode(' AND ', $where) : ''; + $rows = $this->selectRows( + "SELECT r.*, c.slug AS channel_slug, c.name AS channel_name, + (SELECT COUNT(*) FROM release_operation_steps s WHERE s.operation_run_id = r.id) AS step_count, + (SELECT COUNT(*) FROM release_operation_steps s WHERE s.operation_run_id = r.id AND s.status IN ('passed', 'deployed')) AS passed_step_count, + (SELECT COUNT(*) FROM release_operation_steps s WHERE s.operation_run_id = r.id AND s.status = 'failed') AS failed_step_count, + (SELECT COUNT(*) FROM release_operation_steps s WHERE s.operation_run_id = r.id AND s.status IN ('warning', 'skipped')) AS warning_step_count + FROM release_operation_runs r + LEFT JOIN release_channels c ON c.id = r.channel_id + $whereSql + ORDER BY r.created_at DESC, r.id DESC + LIMIT $limit", + $types, + $params + ); + + return array_map(fn(array $row): array => $this->publicOperationRun($row, false), $rows); + } + + public function operationDetail(int $id): array + { + $this->ensureSchema(); + $operation = $this->getOperationRun($id); + return $this->publicOperationRun($operation, true); + } + + public function runReleaseTest(array $input, ?int $actorUserId = null): array + { + $this->ensureSchema(); + + $channel = null; + try { + if ($this->nullablePositiveInt($input['channel_id'] ?? null) !== null || trim((string)($input['channel_slug'] ?? $input['channel'] ?? '')) !== '') { + $channel = $this->channelFromInput($input); + } + } catch (Throwable $throwable) { + $channel = null; + } + $gateInput = $this->normalizeReleaseGateInput($input, $channel); + + $operationId = $this->createOperationRun('release_test', [ + 'subject_type' => $channel !== null ? 'channel' : 'release_manager', + 'subject_id' => $channel !== null ? (string)$channel['id'] : null, + 'channel_id' => $channel !== null ? (int)$channel['id'] : null, + 'title' => $channel !== null + ? sprintf('Release checks for %s', (string)($channel['name'] ?? $channel['slug'] ?? 'channel')) + : 'Release Manager checks', + 'actor_user_id' => $actorUserId, + 'context' => array_replace(self::redactPayload($input), [ + 'release_gate' => self::redactPayload($gateInput), + ]), + ]); + + $statuses = []; + $this->recordOperationStep($operationId, 'dashboard_contract', 'Dashboard data contract', 'passed', 'Release Manager exposes channels, operations, Coolify, failover, and data-service state.', null, null, [ + 'summary_keys' => ['channels', 'operations', 'coolify', 'failover', 'data_services'], + ]); + $statuses[] = 'passed'; + + if (($gateInput['required_checks'] ?? []) !== []) { + $this->recordOperationStep( + $operationId, + 'release_gate_inputs', + 'Release gate payload', + 'passed', + 'Release gate payload includes CI deploy metadata and required checks.', + null, + null, + $gateInput + ); + $statuses[] = 'passed'; + + foreach ($this->runReleaseGateChecks($gateInput) as $gateStep) { + $this->recordOperationStep( + $operationId, + (string)$gateStep['step_key'], + (string)$gateStep['label'], + (string)$gateStep['status'], + $gateStep['message'] ?? null, + $gateStep['diagnostic'] ?? null, + $gateStep['solution_hint'] ?? null, + is_array($gateStep['context'] ?? null) ? $gateStep['context'] : [] + ); + $statuses[] = (string)$gateStep['status']; + } + } + + $channels = $channel !== null ? [$channel] : $this->selectRows("SELECT * FROM release_channels WHERE deleted_at IS NULL AND enabled = 1 ORDER BY default_channel DESC, slug"); + foreach ($channels as $testChannel) { + foreach (self::APPS as $app) { + $target = $this->deploymentTargetForChannelApp((int)$testChannel['id'], $app); + $repository = trim((string)($target['repository'] ?? self::defaultRepositoryForApp($app))); + $branch = self::releaseBranchForChannel($testChannel); + if ($target === null) { + $this->recordOperationStep( + $operationId, + sprintf('%s_%s_target', (string)$testChannel['slug'], $app), + sprintf('%s %s target', (string)$testChannel['name'], strtoupper($app)), + 'warning', + 'No Coolify deployment target is configured for this app/channel pair.', + 'Release Manager cannot deploy this app until a target exists.', + 'Create or repair the channel deployment target, then run the test again.', + ['channel_slug' => $testChannel['slug'], 'app' => $app, 'retry_action' => 'configure_target'] + ); + $statuses[] = 'warning'; + continue; + } + + $access = $this->githubRepositoryAccess([ + 'repository' => $repository, + 'branch' => $branch, + 'commit_mode' => 'latest', + ]); + $ok = (bool)($access['ok'] ?? false); + $status = $ok ? 'passed' : 'warning'; + $statuses[] = $status; + $this->recordOperationStep( + $operationId, + sprintf('%s_%s_branch', (string)$testChannel['slug'], $app), + sprintf('%s %s branch', (string)$testChannel['name'], strtoupper($app)), + $status, + $ok + ? sprintf('Branch %s is reachable and resolves to the latest commit.', $branch) + : sprintf('Branch %s could not be verified and will be skipped by sync.', $branch), + $ok ? null : (string)($access['message'] ?? 'GitHub branch access failed.'), + $ok ? null : 'Create the missing branch or repair the Release Manager GitHub token, then use Retry.', + [ + 'channel_slug' => $testChannel['slug'], + 'route_slug' => self::routeSlugForChannel((string)$testChannel['slug']), + 'app' => $app, + 'repository' => $repository, + 'branch' => $branch, + 'github_access' => $access, + 'retry_action' => 'retry_branch_check', + ] + ); + } + } + + $dataSummary = $channel !== null + ? $this->channelDataServicesSummary($channel) + : $this->releaseDataServicesSummary(); + $this->recordOperationStep($operationId, 'data_services', 'Production-shared data services', 'passed', 'Normal channel sync keeps MariaDB, Redis, and MinIO on production_shared unless an explicit data-service action changes that mode.', null, null, [ + 'data_services' => $dataSummary, + ]); + $statuses[] = 'passed'; + + $finalStatus = in_array('failed', $statuses, true) + ? 'failed' + : (count(array_intersect($statuses, ['warning', 'skipped'])) > 0 ? 'warning' : 'passed'); + $this->completeOperationRun( + $operationId, + $finalStatus, + match ($finalStatus) { + 'passed' => 'Release Manager tests completed without detected issues.', + 'failed' => 'Release Manager tests failed. Promotion is blocked until the failed gate checks pass.', + default => 'Release Manager tests completed with warnings. Open the failed or warning steps for fixes.', + }, + $finalStatus === 'passed' ? null : 'Resolve the failed or warning steps, then run the test again.' + ); + + return $this->operationDetail($operationId); + } + + private function normalizeReleaseGateInput(array $input, ?array $channel): array + { + $channelSlug = self::safeSlug((string)($input['channel_slug'] ?? $input['channel'] ?? ($channel['slug'] ?? ''))); + $environmentUrl = $this->normalizeReleaseGateUrl((string)($input['environment_url'] ?? $input['frontend_url'] ?? '')); + $apiBaseUrl = $this->normalizeReleaseGateUrl((string)($input['api_base_url'] ?? 'https://api-v2.truckwash.io')); + $requiredChecks = $this->normalizeReleaseGateChecks($input, $environmentUrl); + $routeSlug = self::routeSlugForChannel($channelSlug ?: 'stable') ?: 'master'; + + return [ + 'environment_url' => $environmentUrl, + 'channel_slug' => $channelSlug, + 'route_slug' => $routeSlug, + 'expected_commit' => self::safeIdentifier((string)($input['expected_commit'] ?? $input['commit_sha'] ?? ''), 128), + 'build_id' => substr(trim((string)($input['build_id'] ?? '')), 0, 128), + 'wait_timeout_seconds' => max(0, min(300, (int)($input['wait_timeout_seconds'] ?? 300))), + 'poll_interval_seconds' => max(1, min(60, (int)($input['poll_interval_seconds'] ?? 10))), + 'required_checks' => $requiredChecks, + 'api_base_url' => $apiBaseUrl, + 'api_ping_paths' => $this->releaseGateStringArray( + $input['api_ping_paths'] + ?? $input['api_paths'] + ?? ['/ping', '/master/api/ping', '/canary/api/ping', '/stable/api/ping'] + ), + 'shell_paths' => $this->releaseGateStringArray($input['shell_paths'] ?? ['/', '/guest/book/wash']), + ]; + } + + private function normalizeReleaseGateChecks(array $input, string $environmentUrl): array + { + $checks = $this->releaseGateStringArray($input['required_checks'] ?? []); + if ($checks === [] && $environmentUrl !== '') { + $checks = ['static_artifact']; + } + + $allowed = ['static_artifact', 'api_gateway']; + $normalized = []; + foreach ($checks as $check) { + $check = self::safeIdentifier(strtolower($check), 64); + if (in_array($check, $allowed, true) && !in_array($check, $normalized, true)) { + $normalized[] = $check; + } + } + + return $normalized; + } + + private function releaseGateStringArray(mixed $value): array + { + if (is_string($value)) { + $value = preg_split('/\s*,\s*/', trim($value)) ?: []; + } + if (!is_array($value)) { + return []; + } + + $values = []; + foreach ($value as $item) { + $item = trim((string)$item); + if ($item !== '' && !in_array($item, $values, true)) { + $values[] = $item; + } + } + return $values; + } + + private function normalizeReleaseGateUrl(string $value): string + { + $value = trim($value); + if ($value === '') { + return ''; + } + if (preg_match('#^https?://#i', $value) !== 1) { + $value = 'https://' . ltrim($value, '/'); + } + $parts = parse_url($value); + if (!is_array($parts) || empty($parts['host'])) { + return ''; + } + + return rtrim($value, '/'); + } + + private function runReleaseGateChecks(array $gateInput): array + { + $steps = []; + foreach ($gateInput['required_checks'] as $check) { + $steps[] = match ($check) { + 'static_artifact' => $this->verifyReleaseStaticArtifact($gateInput), + 'api_gateway' => $this->verifyReleaseApiGateway($gateInput), + default => [ + 'step_key' => $check, + 'label' => 'Unknown release gate check', + 'status' => 'skipped', + 'message' => 'Unknown release gate check was skipped.', + 'context' => ['check' => $check], + ], + }; + } + + return $steps; + } + + private function assertReleaseGatePassedForPromotion(int $channelId, ?string $expectedCommit = null, ?string $buildId = null): void + { + if (!$this->releaseGateRequiredForPromotion()) { + return; + } + + $expectedCommit = trim((string)$expectedCommit); + $buildId = trim((string)$buildId); + $rows = $this->selectRows( + "SELECT id, context_json, completed_at + FROM release_operation_runs + WHERE operation_type = 'release_test' + AND channel_id = ? + AND status = 'passed' + AND completed_at >= DATE_SUB(NOW(), INTERVAL 12 HOUR) + ORDER BY completed_at DESC, id DESC + LIMIT 20", + 'i', + [$channelId] + ); + + foreach ($rows as $row) { + $context = json_decode((string)($row['context_json'] ?? ''), true); + $gate = is_array($context['release_gate'] ?? null) ? $context['release_gate'] : []; + if ($expectedCommit !== '' && !$this->releaseGateCommitMatches((string)($gate['expected_commit'] ?? ''), $expectedCommit)) { + continue; + } + if ($buildId !== '' && (string)($gate['build_id'] ?? '') !== $buildId) { + continue; + } + + return; + } + + throw new RuntimeException('A passing Release Manager gate is required before promotion. Run the dev upload, public live smoke, credentialed smoke, and api-v2 health checks, then retry promotion.'); + } + + private function releaseGateRequiredForPromotion(): bool + { + $envValue = trim((string)(getenv('RELEASE_GATE_REQUIRED_FOR_PROMOTION') ?: ($_SERVER['RELEASE_GATE_REQUIRED_FOR_PROMOTION'] ?? ''))); + if ($envValue !== '') { + return $this->toBool($envValue); + } + + return $this->toBool($this->moduleConfigValue('ReleaseManager', 'release_gate_required_for_promotion', 'true')); + } + + private function verifyReleaseStaticArtifact(array $gateInput): array + { + if (($gateInput['environment_url'] ?? '') === '') { + return [ + 'step_key' => 'static_artifact', + 'label' => 'Static artifact deployment', + 'status' => 'failed', + 'message' => 'environment_url is required for static artifact verification.', + 'solution_hint' => 'Pass the dev or channel frontend URL from CI.', + 'context' => $gateInput, + ]; + } + + $deadline = time() + (int)$gateInput['wait_timeout_seconds']; + $pollInterval = (int)$gateInput['poll_interval_seconds']; + $attempts = 0; + $lastMessage = 'Static artifact verification did not run.'; + do { + $attempts++; + try { + $context = $this->releaseStaticArtifactAttempt($gateInput); + $context['attempts'] = $attempts; + return [ + 'step_key' => 'static_artifact', + 'label' => 'Static artifact deployment', + 'status' => 'passed', + 'message' => 'The exact release manifest, app shell, JS, CSS, PWA assets, and release entry are reachable.', + 'context' => $context, + ]; + } catch (Throwable $throwable) { + $lastMessage = $throwable->getMessage(); + if (time() >= $deadline) { + break; + } + sleep($pollInterval); + } + } while (true); + + return [ + 'step_key' => 'static_artifact', + 'label' => 'Static artifact deployment', + 'status' => 'failed', + 'message' => 'The uploaded frontend artifact is not ready or does not match the expected build.', + 'diagnostic' => $lastMessage, + 'solution_hint' => 'Upload hashed assets first, keep old hashed assets, upload release-entry.json and index.html last, then rerun the gate.', + 'context' => [ + 'environment_url' => $gateInput['environment_url'], + 'attempts' => $attempts, + 'wait_timeout_seconds' => $gateInput['wait_timeout_seconds'], + 'poll_interval_seconds' => $gateInput['poll_interval_seconds'], + ], + ]; + } + + private function releaseStaticArtifactAttempt(array $gateInput): array + { + $baseUrl = (string)$gateInput['environment_url']; + $manifest = $this->releaseGateFetchJson($baseUrl, 'release-manifest.json'); + $releaseEntry = $this->releaseGateFetchJson($baseUrl, 'release-entry.json'); + $manifestData = $manifest['json']; + $releaseEntryData = $releaseEntry['json']; + + if (trim((string)($manifestData['build_id'] ?? '')) === '') { + throw new RuntimeException('release-manifest.json is missing build_id.'); + } + if (!$this->releaseGateCommitMatches((string)($manifestData['commit_sha'] ?? ''), (string)$gateInput['expected_commit'])) { + throw new RuntimeException(sprintf( + 'release-manifest.json commit_sha %s did not match expected commit %s.', + (string)($manifestData['commit_sha'] ?? '(missing)'), + (string)$gateInput['expected_commit'] + )); + } + if ((string)$gateInput['build_id'] !== '' && (string)($manifestData['build_id'] ?? '') !== (string)$gateInput['build_id']) { + throw new RuntimeException(sprintf( + 'release-manifest.json build_id %s did not match expected build_id %s.', + (string)($manifestData['build_id'] ?? '(missing)'), + (string)$gateInput['build_id'] + )); + } + if ((string)($releaseEntryData['entry'] ?? '') !== (string)($manifestData['entry'] ?? '')) { + throw new RuntimeException('release-entry.json entry does not match release-manifest.json.'); + } + if (json_encode($releaseEntryData['css'] ?? []) !== json_encode($manifestData['css'] ?? [])) { + throw new RuntimeException('release-entry.json css does not match release-manifest.json.'); + } + + foreach ($gateInput['shell_paths'] as $shellPath) { + $shell = $this->releaseGateFetch($this->releaseGateJoinUrl($baseUrl, $shellPath)); + if (($shell['status'] ?? 0) !== 200) { + throw new RuntimeException(sprintf('%s returned HTTP %d.', $shellPath, (int)($shell['status'] ?? 0))); + } + if (!str_contains(strtolower((string)($shell['content_type'] ?? '')), 'text/html')) { + throw new RuntimeException(sprintf('%s did not return HTML.', $shellPath)); + } + $body = (string)($shell['body'] ?? ''); + if (strlen(trim(preg_replace('/\s+/', '', $body) ?? '')) < 40) { + throw new RuntimeException(sprintf('%s returned an empty app shell.', $shellPath)); + } + if (!str_contains($body, '
')) { + throw new RuntimeException(sprintf('%s did not include the Vue app root.', $shellPath)); + } + } + + $assetUrls = $this->releaseGateUniqueStrings(array_merge( + ['release-manifest.json', 'release-entry.json'], + [(string)($manifestData['entry'] ?? '')], + is_array($manifestData['css'] ?? null) ? $manifestData['css'] : [], + is_array($manifestData['index_asset_urls'] ?? null) ? $manifestData['index_asset_urls'] : [], + is_array($manifestData['pwa_asset_urls'] ?? null) ? $manifestData['pwa_asset_urls'] : [], + is_array($manifestData['asset_urls'] ?? null) ? $manifestData['asset_urls'] : [] + )); + $verifiedAssets = 0; + foreach ($assetUrls as $assetUrl) { + if ($assetUrl === '/index.html') { + continue; + } + $this->releaseGateVerifyStaticAsset($baseUrl, $assetUrl, is_array($manifestData['asset_hashes'] ?? null) ? $manifestData['asset_hashes'] : []); + $verifiedAssets++; + } + + return [ + 'environment_url' => $baseUrl, + 'build_id' => (string)$manifestData['build_id'], + 'commit_sha' => (string)($manifestData['commit_sha'] ?? ''), + 'entry' => (string)$manifestData['entry'], + 'verified_assets' => $verifiedAssets, + ]; + } + + private function verifyReleaseApiGateway(array $gateInput): array + { + $apiBaseUrl = (string)($gateInput['api_base_url'] ?? ''); + if ($apiBaseUrl === '') { + return [ + 'step_key' => 'api_gateway', + 'label' => 'api-v2 channel health', + 'status' => 'failed', + 'message' => 'api_base_url is required for API gateway verification.', + 'solution_hint' => 'Pass the api-v2 base URL from CI.', + 'context' => $gateInput, + ]; + } + + $checked = []; + try { + foreach ($gateInput['api_ping_paths'] as $path) { + $json = $this->releaseGateFetchJson($apiBaseUrl, $path); + $payload = $json['json']; + if (array_key_exists('success', $payload) && $payload['success'] !== true) { + throw new RuntimeException(sprintf('%s returned success=false.', $path)); + } + $checked[] = [ + 'path' => $path, + 'status' => $json['status'], + ]; + } + } catch (Throwable $throwable) { + return [ + 'step_key' => 'api_gateway', + 'label' => 'api-v2 channel health', + 'status' => 'failed', + 'message' => 'api-v2 gateway or channel API health failed.', + 'diagnostic' => $throwable->getMessage(), + 'solution_hint' => 'Repair api-v2 routing so /ping, /master/api/ping, and channel /api/ping endpoints return 200 JSON before frontend promotion.', + 'context' => [ + 'api_base_url' => $apiBaseUrl, + 'checked' => $checked, + 'api_ping_paths' => $gateInput['api_ping_paths'], + ], + ]; + } + + return [ + 'step_key' => 'api_gateway', + 'label' => 'api-v2 channel health', + 'status' => 'passed', + 'message' => 'api-v2 gateway and channel API prefixes returned 200 JSON.', + 'context' => [ + 'api_base_url' => $apiBaseUrl, + 'checked' => $checked, + ], + ]; + } + + private function releaseGateFetchJson(string $baseUrl, string $path): array + { + $result = $this->releaseGateFetch($this->releaseGateJoinUrl($baseUrl, $path)); + if (($result['status'] ?? 0) !== 200) { + throw new RuntimeException(sprintf('%s returned HTTP %d.', $path, (int)($result['status'] ?? 0))); + } + if (str_contains(strtolower((string)($result['content_type'] ?? '')), 'text/html')) { + throw new RuntimeException(sprintf('%s was served as HTML.', $path)); + } + + $decoded = json_decode((string)($result['body'] ?? ''), true); + if (!is_array($decoded)) { + throw new RuntimeException(sprintf('%s did not return valid JSON.', $path)); + } + + $result['json'] = $decoded; + return $result; + } + + private function releaseGateVerifyStaticAsset(string $baseUrl, string $assetUrl, array $assetHashes): void + { + $result = $this->releaseGateFetch($this->releaseGateJoinUrl($baseUrl, $assetUrl)); + if (($result['status'] ?? 0) !== 200) { + throw new RuntimeException(sprintf('%s returned HTTP %d.', $assetUrl, (int)($result['status'] ?? 0))); + } + + $body = (string)($result['body'] ?? ''); + if ($body === '') { + throw new RuntimeException(sprintf('%s returned an empty body.', $assetUrl)); + } + if ($this->releaseGateRejectsHtml($assetUrl) && str_contains(strtolower((string)($result['content_type'] ?? '')), 'text/html')) { + throw new RuntimeException(sprintf('%s was served as HTML.', $assetUrl)); + } + + $hashKey = str_starts_with($assetUrl, '/') ? $assetUrl : '/' . ltrim($assetUrl, '/'); + if (is_array($assetHashes[$hashKey] ?? null) && !empty($assetHashes[$hashKey]['sha256'])) { + $actualHash = hash('sha256', $body); + if (!hash_equals((string)$assetHashes[$hashKey]['sha256'], $actualHash)) { + throw new RuntimeException(sprintf('%s sha256 hash mismatch.', $assetUrl)); + } + } + } + + private function releaseGateFetch(string $url): array + { + $curl = curl_init($url); + if ($curl === false) { + throw new RuntimeException('Could not initialize release gate request.'); + } + + curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); + curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); + curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 5); + curl_setopt($curl, CURLOPT_TIMEOUT, 15); + curl_setopt($curl, CURLOPT_NOSIGNAL, true); + curl_setopt($curl, CURLOPT_HTTPHEADER, [ + 'Accept: application/json, text/html, */*', + 'Cache-Control: no-cache', + 'Pragma: no-cache', + 'User-Agent: Truckwash-Release-Gate', + ]); + + $body = curl_exec($curl); + $error = curl_error($curl); + $status = (int)curl_getinfo($curl, CURLINFO_HTTP_CODE); + $contentType = (string)curl_getinfo($curl, CURLINFO_CONTENT_TYPE); + curl_close($curl); + + if ($body === false) { + throw new RuntimeException('Release gate request failed: ' . $error); + } + + return [ + 'url' => $url, + 'status' => $status, + 'content_type' => $contentType, + 'body' => (string)$body, + ]; + } + + private function releaseGateJoinUrl(string $baseUrl, string $path): string + { + if (preg_match('#^https?://#i', $path) === 1) { + return $path; + } + + return rtrim($baseUrl, '/') . '/' . ltrim($path, '/'); + } + + private function releaseGateCommitMatches(string $actual, string $expected): bool + { + $expected = trim($expected); + if ($expected === '') { + return true; + } + $actual = trim($actual); + return $actual !== '' && ($actual === $expected || str_starts_with($actual, $expected)); + } + + private function releaseGateRejectsHtml(string $assetUrl): bool + { + return preg_match('/\.(js|css|json|webmanifest|svg|png|ico|woff2?|mp3)$/i', parse_url($assetUrl, PHP_URL_PATH) ?: '') === 1; + } + + private function releaseGateUniqueStrings(array $values): array + { + $unique = []; + foreach ($values as $value) { + $value = trim((string)$value); + if ($value !== '' && !in_array($value, $unique, true)) { + $unique[] = $value; + } + } + + return $unique; + } + + public function syncChannel(int $channelId, ?int $actorUserId = null, array $options = []): array + { + $this->ensureSchema(); + $channel = $this->getChannel($channelId); + if ((int)($channel['enabled'] ?? 0) !== 1) { + throw new RuntimeException('Release channel is disabled.'); + } + + $requestedApp = ''; + if (trim((string)($options['app'] ?? '')) !== '') { + $requestedApp = $this->normalizeApp((string)$options['app']); + } + $apps = $requestedApp !== '' ? [$requestedApp] : self::APPS; + $branch = self::releaseBranchForChannel($channel); + $routeSlug = self::routeSlugForChannel((string)$channel['slug']); + + $operationId = $this->createOperationRun('channel_sync', [ + 'subject_type' => 'channel', + 'subject_id' => (string)$channelId, + 'channel_id' => $channelId, + 'app' => $requestedApp !== '' ? $requestedApp : null, + 'title' => sprintf('Sync %s release channel', (string)($channel['name'] ?? $channel['slug'])), + 'actor_user_id' => $actorUserId, + 'context' => [ + 'channel_slug' => $channel['slug'], + 'route_slug' => $routeSlug, + 'branch' => $branch, + 'apps' => $apps, + 'source' => $options['source'] ?? 'manual', + ], + ]); + + $statuses = []; + $deployments = []; + $this->recordOperationStep( + $operationId, + 'channel_mapping', + 'Channel route and branch mapping', + 'passed', + sprintf('Channel %s syncs from branch %s and publishes under /%s/{api|frontend}.', (string)$channel['slug'], $branch, $routeSlug), + null, + null, + ['channel_slug' => $channel['slug'], 'route_slug' => $routeSlug, 'branch' => $branch] + ); + $statuses[] = 'passed'; + + $this->recordOperationStep( + $operationId, + 'data_services_guard', + 'Data services guard', + 'passed', + 'Code sync will not deploy or replace MariaDB, Redis, or MinIO.', + null, + null, + ['data_services' => $this->channelDataServicesSummary($channel)] + ); + $statuses[] = 'passed'; + + foreach ($apps as $app) { + $target = $this->deploymentTargetForChannelApp($channelId, $app); + if ($target === null) { + $this->recordOperationStep( + $operationId, + $app . '_target', + strtoupper($app) . ' Coolify target', + 'failed', + 'No Coolify deployment target exists for this channel/app.', + 'The channel cannot receive a new ' . $app . ' deployment.', + 'Create the missing deployment target and use Retry.', + ['channel_id' => $channelId, 'channel_slug' => $channel['slug'], 'app' => $app, 'retry_action' => 'configure_target'] + ); + $statuses[] = 'failed'; + continue; + } + + $repository = trim((string)($target['repository'] ?? self::defaultRepositoryForApp($app))); + if ($repository === '') { + $repository = self::defaultRepositoryForApp($app); + } + $access = $this->githubRepositoryAccess([ + 'repository' => $repository, + 'branch' => $branch, + 'commit_mode' => 'latest', + ]); + if (!($access['ok'] ?? false)) { + $this->recordOperationStep( + $operationId, + $app . '_branch', + strtoupper($app) . ' branch', + 'warning', + sprintf('%s branch %s was not deployed because it could not be verified.', strtoupper($app), $branch), + (string)($access['message'] ?? 'GitHub branch access failed.'), + 'Create the branch from master or repair GitHub access, then use Retry.', + [ + 'channel_slug' => $channel['slug'], + 'route_slug' => $routeSlug, + 'app' => $app, + 'repository' => $repository, + 'branch' => $branch, + 'github_access' => $access, + 'retry_action' => 'retry_sync', + ] + ); + $statuses[] = 'warning'; + continue; + } + + $commitSha = trim((string)($access['commit_sha'] ?? $access['latest_commit_sha'] ?? '')); + $current = $this->currentDeploymentForChannelApp($channelId, $app); + if ($commitSha !== '' && $current !== null && trim((string)($current['commit_sha'] ?? '')) === $commitSha) { + $this->recordOperationStep( + $operationId, + $app . '_already_current', + strtoupper($app) . ' deployment', + 'skipped', + sprintf('%s is already active at %s.', strtoupper($app), substr($commitSha, 0, 12)), + null, + null, + ['deployment' => $this->publicDeployment($current), 'github_access' => $access] + ); + $statuses[] = 'skipped'; + continue; + } + + try { + $deployment = $this->startDeployment([ + 'target_id' => (int)$target['id'], + 'channel_id' => $channelId, + 'app' => $app, + 'repository' => $repository, + 'branch' => $branch, + 'commit_mode' => 'latest', + 'version_label' => $commitSha !== '' ? substr($commitSha, 0, 12) : date('Ymd-His'), + 'build_url' => $options['build_url'] ?? null, + 'metadata' => [ + 'release_operation_id' => $operationId, + 'sync_source' => $options['source'] ?? 'manual', + 'webhook_commit_sha' => $options['commit_sha'] ?? null, + ], + ], $actorUserId); + $deployments[] = $deployment; + if (($deployment['status'] ?? '') === 'deployed' && !empty($deployment['id'])) { + $promoted = $this->promoteDeployment((int)$deployment['id'], $actorUserId); + $deployment = $promoted['deployment'] ?? $deployment; + } + $this->recordOperationStep( + $operationId, + $app . '_deploy', + strtoupper($app) . ' deploy and activate', + (($deployment['status'] ?? '') === 'failed') ? 'failed' : 'passed', + (($deployment['status'] ?? '') === 'failed') + ? sprintf('%s deployment failed before activation.', strtoupper($app)) + : sprintf('%s deployment was recorded and the latest deployed revision is active for this channel.', strtoupper($app)), + (($deployment['status'] ?? '') === 'failed') ? (string)($deployment['error_message'] ?? 'Deployment failed.') : null, + (($deployment['status'] ?? '') === 'failed') ? 'Open the deployment result diagnostics, fix the provider error, then use Retry.' : null, + ['deployment' => $deployment, 'github_access' => $access] + ); + $statuses[] = (($deployment['status'] ?? '') === 'failed') ? 'failed' : 'passed'; + } catch (Throwable $throwable) { + $this->recordOperationStep( + $operationId, + $app . '_deploy', + strtoupper($app) . ' deploy and activate', + 'failed', + sprintf('%s deployment failed before activation.', strtoupper($app)), + $throwable->getMessage(), + 'Review the deployment target, Coolify service, and GitHub branch, then use Retry.', + ['app' => $app, 'repository' => $repository, 'branch' => $branch] + ); + $statuses[] = 'failed'; + } + } + + $finalStatus = in_array('failed', $statuses, true) + ? 'failed' + : (count(array_intersect($statuses, ['warning'])) > 0 ? 'warning' : 'passed'); + $this->completeOperationRun( + $operationId, + $finalStatus, + $finalStatus === 'passed' + ? 'Channel sync completed.' + : 'Channel sync finished with failures or warnings. Open the operation steps for exact diagnostics.', + $finalStatus === 'passed' ? null : 'Use the step retry action after fixing the reported target, branch, or provider issue.' + ); + + $operation = $this->operationDetail($operationId); + $operation['deployments'] = $deployments; + $operation['channel'] = $this->publicChannel($this->getChannel($channelId)); + return $operation; + } + + public function runIssueAction(array $input, ?int $actorUserId = null): array + { + $this->ensureSchema(); + + $issueKey = trim((string)($input['issue_key'] ?? $input['key'] ?? '')); + $actionId = self::safeIdentifier((string)($input['action_id'] ?? $input['action'] ?? ''), 64); + $actionInputs = is_array($input['inputs'] ?? null) ? $input['inputs'] : []; + $confirmed = $this->toBool($input['confirm'] ?? false); + $summary = $this->summary(); + + $issue = $this->releaseStatusIssueByKey($summary, $issueKey); + if ($issue === null) { + $this->audit(null, null, 'release_issue_action_attempted', $actorUserId, 'warning', [ + 'issue_key' => $issueKey, + 'action_id' => $actionId, + 'inputs' => $actionInputs, + 'status' => 'stale_issue', + ]); + + return [ + 'status' => 'failed', + 'message' => 'This release issue is no longer active. Refresh Release Manager and review the current state.', + 'result' => null, + 'summary' => $summary, + ]; + } + + $action = $this->releaseStatusActionById($issue, $actionId); + if ($action === null) { + $this->audit( + $this->nullablePositiveInt($issue['channel_id'] ?? null), + $this->nullablePositiveInt($issue['deployment_id'] ?? null), + 'release_issue_action_attempted', + $actorUserId, + 'warning', + [ + 'issue_key' => $issueKey, + 'issue' => $issue, + 'action_id' => $actionId, + 'inputs' => $actionInputs, + 'status' => 'unavailable_action', + ] + ); + + return [ + 'status' => 'failed', + 'message' => 'This release issue action is no longer available.', + 'issue' => $issue, + 'result' => null, + 'summary' => $summary, + ]; + } + + if (trim((string)($action['disabled_reason'] ?? '')) !== '') { + $this->audit( + $this->nullablePositiveInt($issue['channel_id'] ?? null), + $this->nullablePositiveInt($issue['deployment_id'] ?? null), + 'release_issue_action_attempted', + $actorUserId, + 'warning', + [ + 'issue_key' => $issueKey, + 'issue' => $issue, + 'action_id' => $actionId, + 'inputs' => $actionInputs, + 'status' => 'disabled', + 'disabled_reason' => (string)$action['disabled_reason'], + ] + ); + + return [ + 'status' => 'needs_input', + 'message' => (string)$action['disabled_reason'], + 'issue' => $issue, + 'action' => $action, + 'result' => null, + 'summary' => $summary, + ]; + } + + if (($action['requires_confirmation'] ?? false) && !$confirmed) { + $this->audit( + $this->nullablePositiveInt($issue['channel_id'] ?? null), + $this->nullablePositiveInt($issue['deployment_id'] ?? null), + 'release_issue_action_attempted', + $actorUserId, + 'warning', + [ + 'issue_key' => $issueKey, + 'issue' => $issue, + 'action_id' => $actionId, + 'inputs' => $actionInputs, + 'status' => 'confirmation_required', + ] + ); + + return [ + 'status' => 'needs_input', + 'message' => 'Confirm this release issue action before Release Manager changes deployment state.', + 'issue' => $issue, + 'action' => $action, + 'result' => null, + 'summary' => $summary, + ]; + } + + $this->audit( + $this->nullablePositiveInt($issue['channel_id'] ?? null), + $this->nullablePositiveInt($issue['deployment_id'] ?? null), + 'release_issue_action_attempted', + $actorUserId, + 'info', + [ + 'issue_key' => $issueKey, + 'issue' => $issue, + 'action_id' => $actionId, + 'inputs' => $actionInputs, + ] + ); + + try { + $result = $this->executeReleaseIssueAction($issue, $actionId, $actionInputs, $actorUserId); + $status = (string)($result['status'] ?? 'completed'); + $message = (string)($result['message'] ?? 'Release issue action completed.'); + $this->audit( + $this->nullablePositiveInt($issue['channel_id'] ?? null), + $this->nullablePositiveInt($issue['deployment_id'] ?? null), + 'release_issue_action_completed', + $actorUserId, + $status === 'failed' ? 'error' : 'info', + [ + 'issue_key' => $issueKey, + 'action_id' => $actionId, + 'status' => $status, + 'result' => $result['result'] ?? null, + ] + ); + + return [ + 'status' => $status, + 'message' => $message, + 'issue' => $issue, + 'action' => $action, + 'result' => $result['result'] ?? null, + 'summary' => $this->summary(), + ]; + } catch (Throwable $throwable) { + $this->audit( + $this->nullablePositiveInt($issue['channel_id'] ?? null), + $this->nullablePositiveInt($issue['deployment_id'] ?? null), + 'release_issue_action_failed', + $actorUserId, + 'error', + [ + 'issue_key' => $issueKey, + 'action_id' => $actionId, + 'error' => $throwable->getMessage(), + ] + ); + + return [ + 'status' => 'failed', + 'message' => $throwable->getMessage(), + 'issue' => $issue, + 'action' => $action, + 'result' => null, + 'summary' => $this->summary(), + ]; + } + } + + private function executeReleaseIssueAction(array $issue, string $actionId, array $inputs, ?int $actorUserId): array + { + return match ($actionId) { + 'retry_deployment' => $this->retryReleaseIssueDeployment($issue, $inputs, $actorUserId), + 'deploy_missing_version' => $this->deployReleaseIssueMissingVersion($issue, $inputs, $actorUserId), + 'set_bundle' => $this->setReleaseIssueBundle($issue, $inputs, $actorUserId), + 'complete_data_services' => $this->completeReleaseIssueDataServices($issue, $inputs, $actorUserId), + 'reconcile_coolify_target' => $this->runReleaseIssueCoolifyTargetAction($issue, 'reconcile', $actorUserId), + 'redeploy_coolify_target' => $this->runReleaseIssueCoolifyTargetAction($issue, 'deploy', $actorUserId), + 'restart_coolify_target' => $this->runReleaseIssueCoolifyTargetAction($issue, 'restart', $actorUserId), + 'prepare_application_target' => $this->prepareReleaseIssueApplicationTarget($issue, $actorUserId), + 'refresh_status' => [ + 'status' => 'completed', + 'message' => 'Release status refreshed.', + 'result' => null, + ], + default => throw new RuntimeException('Unknown release issue action.'), + }; + } + + private function retryReleaseIssueDeployment(array $issue, array $inputs, ?int $actorUserId): array + { + $deploymentId = $this->nullablePositiveInt($issue['deployment_id'] ?? null); + if ($deploymentId === null) { + throw new RuntimeException('The failed deployment record is missing.'); + } + + $deployment = $this->getDeployment($deploymentId); + $payload = self::jsonDecode($deployment['requested_payload_json'] ?? null); + $payload = is_array($payload) ? $payload : []; + foreach (['version_id'] as $key) { + if (array_key_exists($key, $inputs)) { + $payload[$key] = $inputs[$key]; + } + } + $payload = array_replace($payload, [ + 'channel_id' => (int)$deployment['channel_id'], + 'target_id' => $this->nullablePositiveInt($deployment['target_id'] ?? null), + 'app' => (string)$deployment['app'], + 'repository' => (string)($deployment['repository'] ?? ''), + 'branch' => (string)($deployment['branch'] ?? self::DEFAULT_BRANCH), + 'commit_mode' => trim((string)($deployment['commit_sha'] ?? '')) !== '' ? 'specific' : 'latest', + 'commit_sha' => (string)($deployment['commit_sha'] ?? ''), + 'service_set_id' => $this->nullablePositiveInt($deployment['service_set_id'] ?? null), + 'bundle_id' => $this->nullablePositiveInt($deployment['bundle_id'] ?? null), + 'deployment_kind' => (string)($deployment['deployment_kind'] ?? 'single_app'), + ]); + + $newDeployment = $this->startDeployment($payload, $actorUserId); + $status = strtolower((string)($newDeployment['status'] ?? '')); + return [ + 'status' => $status === 'failed' ? 'failed' : (in_array($status, ['queued', 'deploying'], true) ? 'queued' : 'completed'), + 'message' => $status === 'failed' ? 'Deployment retry failed.' : 'Deployment retry started.', + 'result' => ['deployment' => $newDeployment], + ]; + } + + private function deployReleaseIssueMissingVersion(array $issue, array $inputs, ?int $actorUserId): array + { + $targetId = $this->nullablePositiveInt($inputs['target_id'] ?? $issue['target_id'] ?? null); + if ($targetId === null) { + return [ + 'status' => 'needs_input', + 'message' => 'Select or create a deployment target before deploying the missing version.', + 'result' => [ + 'required_inputs' => ['target_id'], + 'channel_id' => $issue['channel_id'] ?? null, + 'app' => $issue['service_key'] ?? null, + ], + ]; + } + + $target = $this->getDeploymentTarget($targetId); + $deployment = $this->startDeployment([ + 'channel_id' => (int)$target['channel_id'], + 'target_id' => $targetId, + 'app' => (string)$target['app'], + 'repository' => (string)$target['repository'], + 'branch' => (string)$target['branch'], + 'commit_mode' => (string)($inputs['commit_mode'] ?? 'latest'), + 'commit_sha' => (string)($inputs['commit_sha'] ?? ''), + 'version_label' => (string)($inputs['version_label'] ?? ''), + ], $actorUserId); + + $status = strtolower((string)($deployment['status'] ?? '')); + return [ + 'status' => $status === 'failed' ? 'failed' : (in_array($status, ['queued', 'deploying'], true) ? 'queued' : 'completed'), + 'message' => $status === 'failed' ? 'Missing version deployment failed.' : 'Missing version deployment started.', + 'result' => ['deployment' => $deployment], + ]; + } + + private function setReleaseIssueBundle(array $issue, array $inputs, ?int $actorUserId): array + { + $channelId = $this->nullablePositiveInt($issue['channel_id'] ?? null); + if ($channelId === null) { + throw new RuntimeException('Release channel is missing.'); + } + + $bundleId = $this->nullablePositiveInt($inputs['bundle_id'] ?? null); + if ($bundleId === null) { + $eligible = self::releaseStatusEligibleBundles(array_filter( + $this->listBundles(250), + static fn(array $bundle): bool => (int)($bundle['channel_id'] ?? 0) === $channelId + )); + if (count($eligible) !== 1) { + return [ + 'status' => 'needs_input', + 'message' => $eligible === [] ? 'No deployed bundle is available for this channel.' : 'Choose which deployed bundle to set.', + 'result' => [ + 'required_inputs' => ['bundle_id'], + 'bundle_choices' => $eligible, + ], + ]; + } + $bundleId = (int)$eligible[0]['id']; + } + + return [ + 'status' => 'completed', + 'message' => 'Release bundle set for channel.', + 'result' => $this->setChannelBundle($channelId, ['bundle_id' => $bundleId], $actorUserId), + ]; + } + + private function completeReleaseIssueDataServices(array $issue, array $inputs, ?int $actorUserId): array + { + $serviceSetId = $this->nullablePositiveInt($inputs['service_set_id'] ?? $issue['service_set_id'] ?? null); + if ($serviceSetId === null) { + return [ + 'status' => 'needs_input', + 'message' => 'Select the isolated service set before creating missing data services.', + 'result' => ['required_inputs' => ['service_set_id']], + ]; + } + + return [ + 'status' => 'queued', + 'message' => 'Missing isolated data services were requested.', + 'result' => $this->completeIsolatedStackDataServices($serviceSetId, ['deploy_data_targets' => true], $actorUserId), + ]; + } + + private function runReleaseIssueCoolifyTargetAction(array $issue, string $operation, ?int $actorUserId): array + { + $targetId = $this->nullablePositiveInt($issue['coolify_target_id'] ?? null); + if ($targetId === null) { + throw new RuntimeException('Coolify target is missing.'); + } + if (!class_exists(coolify_manager::class) && function_exists('app_require')) { + app_require('classes/coolify_manager.php'); + } + if (!class_exists(coolify_manager::class)) { + throw new RuntimeException('Coolify manager is not available.'); + } + + $manager = new coolify_manager(); + $result = match ($operation) { + 'reconcile' => $manager->reconcileTarget($targetId, $actorUserId), + 'deploy' => $manager->deployTarget($targetId, $actorUserId), + 'restart' => $manager->restartTarget($targetId, $actorUserId), + default => throw new RuntimeException('Unknown Coolify target action.'), + }; + + return [ + 'status' => 'queued', + 'message' => 'Coolify target action requested.', + 'result' => $result, + ]; + } + + private function prepareReleaseIssueApplicationTarget(array $issue, ?int $actorUserId): array + { + $targetId = $this->nullablePositiveInt($issue['target_id'] ?? null); + if ($targetId === null) { + throw new RuntimeException('Release deployment target is missing.'); + } + + $target = $this->getDeploymentTarget($targetId); + $context = self::jsonDecode($target['deploy_context_json'] ?? null); + $context = is_array($context) ? $context : []; + $context['coolify_resource_type'] = 'application'; + $context['coolify_auto_create'] = true; + $context['coolify_enable_ssl'] = $this->toBool($context['coolify_enable_ssl'] ?? true); + $replacedLegacyUuid = trim((string)($target['coolify_service_uuid'] ?? '')) !== ''; + + $this->execute( + 'UPDATE release_deployment_targets SET coolify_service_uuid = NULL, deploy_context_json = ? WHERE id = ?', + 'si', + [self::jsonEncode($context), $targetId] + ); + $this->audit((int)$target['channel_id'], null, 'deployment_target_prepared_as_application', $actorUserId, 'warning', [ + 'target_id' => $targetId, + 'replaced_legacy_service_uuid' => $replacedLegacyUuid, + ]); + + return [ + 'status' => 'completed', + 'message' => 'Deployment target will create a Coolify application on the next deployment.', + 'result' => $this->publicDeploymentTarget($this->getDeploymentTarget($targetId)), + ]; + } + + private function releaseStatusIssueByKey(array $summary, string $issueKey): ?array + { + foreach (is_array($summary['status_overview']['issues'] ?? null) ? $summary['status_overview']['issues'] : [] as $issue) { + if (is_array($issue) && (string)($issue['key'] ?? '') === $issueKey) { + return $issue; + } + } + return null; + } + + private function releaseStatusActionById(array $issue, string $actionId): ?array + { + foreach (is_array($issue['actions'] ?? null) ? $issue['actions'] : [] as $action) { + if (is_array($action) && (string)($action['id'] ?? '') === $actionId) { + return $action; + } + } + return null; + } + private function releaseStatusOverview(array $summary): array { $channels = array_values(array_filter( @@ -528,6 +1823,9 @@ class release_manager $serviceSetsByChannel = $this->releaseStatusServiceSetsByChannel( is_array($summary['service_sets'] ?? null) ? $summary['service_sets'] : [] ); + $bundlesByChannel = $this->releaseStatusBundlesByChannel( + is_array($summary['bundles'] ?? null) ? $summary['bundles'] : [] + ); $channelRows = []; $issues = []; @@ -537,7 +1835,8 @@ class release_manager $targetsByChannelApp, $deployments, $deploymentsByChannelApp, - $serviceSetsByChannel + $serviceSetsByChannel, + $bundlesByChannel ); $channelRows[] = $row; foreach ($row['issues'] as $issue) { @@ -610,14 +1909,16 @@ class release_manager array $targetsByChannelApp, array $deployments, array $deploymentsByChannelApp, - array $serviceSetsByChannel + array $serviceSetsByChannel, + array $bundlesByChannel ): array { $channelId = (int)($channel['id'] ?? 0); $channelSlug = (string)($channel['slug'] ?? ''); $channelName = (string)($channel['name'] ?? $channelSlug); - $availability = $this->releaseStatusChannelAvailability($channel); + $channelWithTargetEndpoints = $this->releaseStatusChannelWithTargetEndpoints($channel, $targetsByChannelApp); + $availability = $this->releaseStatusChannelAvailability($channelWithTargetEndpoints); $services = $this->releaseStatusServicesForChannel( - $channel, + $channelWithTargetEndpoints, $availability, $targetsByChannelApp, $deploymentsByChannelApp, @@ -666,9 +1967,20 @@ class release_manager 'deployment_id' => $service['deployment_id'] ?? null, 'coolify_target_id' => $service['coolify_target_id'] ?? null, 'missing_key' => $service['missing_key'] ?? null, + 'service_set_id' => $service['service_set_id'] ?? null, ]); } + $issues = array_map( + fn(array $issue): array => $this->releaseStatusIssueWithActions( + $issue, + $channel, + $services, + $bundlesByChannel[$channelId] ?? [] + ), + $issues + ); + $severity = 'ok'; foreach ($issues as $issue) { $severity = self::releaseStatusMaxSeverity($severity, (string)($issue['severity'] ?? 'ok')); @@ -683,24 +1995,54 @@ class release_manager 'channel_id' => $channelId, 'channel_slug' => $channelSlug, 'channel_name' => $channelName, - 'default_channel' => (bool)($channel['default_channel'] ?? false), - 'enabled' => (bool)($channel['enabled'] ?? true), + 'default_channel' => (bool)($channelWithTargetEndpoints['default_channel'] ?? false), + 'enabled' => (bool)($channelWithTargetEndpoints['enabled'] ?? true), 'severity' => $severity, 'readiness' => $readiness, 'message' => self::releaseStatusChannelMessage($readiness, count($issues)), 'availability' => $availability, 'missing_values' => $missingValues, 'services' => $services, - 'versions' => is_array($channel['versions'] ?? null) ? $channel['versions'] : [], + 'versions' => is_array($channelWithTargetEndpoints['versions'] ?? null) ? $channelWithTargetEndpoints['versions'] : [], 'replay' => [ - 'enabled' => (bool)($channel['replay_enabled'] ?? false), - 'capture_level' => (string)($channel['capture_level'] ?? 'metadata'), + 'enabled' => (bool)($channelWithTargetEndpoints['replay_enabled'] ?? false), + 'capture_level' => (string)($channelWithTargetEndpoints['capture_level'] ?? 'metadata'), ], 'latest_deployments' => $latestDeployments, 'issues' => $issues, ]; } + private function releaseStatusChannelWithTargetEndpoints(array $channel, array $targetsByChannelApp): array + { + $channelId = (int)($channel['id'] ?? 0); + if ($channelId <= 0) { + return $channel; + } + + foreach (self::APPS as $app) { + $field = $app === 'frontend' ? 'frontend_base_url' : 'api_base_url'; + if (!empty($channel[$field])) { + continue; + } + $target = $targetsByChannelApp[$channelId . ':' . $app] ?? null; + if (!is_array($target)) { + continue; + } + $endpointUrl = is_array($target['endpoint'] ?? null) + ? $this->normalizeReleasePublicBaseUrl($target['endpoint']['url'] ?? null, $app) + : null; + $endpointUrl ??= $this->releaseTargetPublicBaseUrl($target + [ + 'channel_slug' => $channel['slug'] ?? $target['channel_slug'] ?? '', + ]); + if ($endpointUrl !== null) { + $channel[$field] = $endpointUrl; + } + } + + return $channel; + } + private function releaseStatusServicesForChannel( array $channel, array $availability, @@ -838,33 +2180,30 @@ class release_manager $serviceLabel = self::releaseStatusServiceLabel($kind); $isDefaultChannel = (bool)($channel['default_channel'] ?? false) || (string)($channel['slug'] ?? '') === 'stable'; $mode = (string)($serviceSet['mode'] ?? ''); + $usesSharedProduction = $serviceSet === null || in_array($mode, ['', 'attach_existing', 'production_shared'], true); $stack = is_array($serviceSet['stack'] ?? null) ? $serviceSet['stack'] : []; $dataServices = is_array($serviceSet['data_services'] ?? null) ? $serviceSet['data_services'] : []; $service = is_array($stack[$kind] ?? null) ? $stack[$kind] : (is_array($dataServices[$kind] ?? null) ? $dataServices[$kind] : null); $row = [ 'service_key' => $kind, 'label' => $serviceLabel, - 'status' => 'ready', + 'status' => $usesSharedProduction ? 'production_shared' : 'ready', 'state' => 'ready', 'severity' => 'ok', - 'message' => $serviceLabel . ' release service is ready.', + 'message' => $usesSharedProduction + ? $serviceLabel . ' uses the production-shared service and is not replaced by channel sync.' + : $serviceLabel . ' release service is ready.', 'next_action' => '', - 'target_tab' => 'bundles', + 'target_tab' => 'data-services', + 'service_set_id' => isset($serviceSet['id']) ? (int)$serviceSet['id'] : null, 'coolify_target_id' => $service['id'] ?? null, 'resource_uuid' => $service['resource_uuid'] ?? null, 'resource_name' => $service['resource_name'] ?? $service['label'] ?? null, 'issue_type' => null, ]; - if ($serviceSet === null) { - return $isDefaultChannel ? $row : array_replace($row, [ - 'status' => 'not_configured', - 'state' => 'stale_unknown', - 'severity' => 'warning', - 'message' => 'No service set is selected for this channel.', - 'next_action' => 'Create or assign a release bundle with a service set.', - 'issue_type' => 'stale_unknown', - ]); + if ($usesSharedProduction) { + return $row; } if ($service === null) { @@ -974,18 +2313,38 @@ class release_manager return $indexed; } + private function releaseStatusBundlesByChannel(array $bundles): array + { + $indexed = []; + foreach ($bundles as $bundle) { + if (!is_array($bundle)) { + continue; + } + $channelId = (int)($bundle['channel_id'] ?? 0); + if ($channelId > 0) { + $indexed[$channelId][] = $bundle; + } + } + return $indexed; + } + private function releaseStatusChannelAvailability(array $channel): array { if (is_array($channel['availability'] ?? null)) { $availability = $channel['availability']; - $missing = array_values(array_filter( - is_array($availability['missing'] ?? null) ? $availability['missing'] : [], - static fn(mixed $key): bool => trim((string)$key) !== '' - )); + $missing = self::releaseStatusReadinessMissingValues( + is_array($availability['missing'] ?? null) ? $availability['missing'] : [] + ); + $status = (string)($availability['status'] ?? ''); + if ($status === '' || ($missing === [] && in_array($status, ['unconfigured', 'missing_target'], true))) { + $status = $missing === [] ? 'ready' : 'unconfigured'; + } return [ - 'configured' => ($availability['configured'] ?? null) === null ? $missing === [] : (bool)$availability['configured'], - 'missing' => array_values(array_map('strval', $missing)), - 'status' => (string)($availability['status'] ?? ($missing === [] ? 'ready' : 'unconfigured')), + 'configured' => $missing === [] + ? true + : (($availability['configured'] ?? null) === null ? false : (bool)$availability['configured']), + 'missing' => $missing, + 'status' => $status, 'bundle_id' => $availability['bundle_id'] ?? null, 'frontend_base_url' => $availability['frontend_base_url'] ?? $channel['frontend_base_url'] ?? null, 'api_base_url' => $availability['api_base_url'] ?? $channel['api_base_url'] ?? null, @@ -1005,9 +2364,6 @@ class release_manager $versions = is_array($channel['versions'] ?? null) ? $channel['versions'] : []; $missing = []; - if (empty($versions['bundle_id'])) { - $missing[] = 'release_bundle'; - } if (empty($versions['frontend'])) { $missing[] = 'frontend_version'; } elseif (empty($channel['frontend_base_url'])) { @@ -1029,9 +2385,23 @@ class release_manager ]; } + private static function releaseStatusReadinessMissingValues(array $missing): array + { + $normalized = []; + foreach ($missing as $key) { + $value = trim((string)$key); + if ($value === '' || $value === 'release_bundle') { + continue; + } + $normalized[] = $value; + } + + return array_values(array_unique($normalized)); + } + private static function releaseStatusIssue(array $issue): array { - return [ + $normalized = [ 'severity' => (string)($issue['severity'] ?? 'warning'), 'type' => (string)($issue['type'] ?? 'stale_unknown'), 'channel_id' => isset($issue['channel_id']) ? (int)$issue['channel_id'] : null, @@ -1044,8 +2414,211 @@ class release_manager 'target_id' => $issue['target_id'] ?? null, 'deployment_id' => $issue['deployment_id'] ?? null, 'coolify_target_id' => $issue['coolify_target_id'] ?? null, + 'service_set_id' => $issue['service_set_id'] ?? null, 'missing_key' => $issue['missing_key'] ?? null, + 'impact' => (string)($issue['impact'] ?? ''), + 'resolution_state' => (string)($issue['resolution_state'] ?? 'open'), + 'actions' => is_array($issue['actions'] ?? null) ? $issue['actions'] : [], ]; + $normalized['key'] = (string)($issue['key'] ?? self::releaseStatusIssueKey($normalized)); + if ($normalized['impact'] === '') { + $normalized['impact'] = self::releaseStatusIssueImpact($normalized); + } + return $normalized; + } + + private function releaseStatusIssueWithActions(array $issue, array $channel, array $services, array $channelBundles): array + { + $issue = self::releaseStatusIssue($issue); + $service = null; + foreach ($services as $candidate) { + if ((string)($candidate['service_key'] ?? '') === (string)($issue['service_key'] ?? '')) { + $service = $candidate; + break; + } + } + + if (($issue['target_id'] ?? null) === null && isset($service['target_id'])) { + $issue['target_id'] = $service['target_id']; + } + if (($issue['deployment_id'] ?? null) === null && isset($service['deployment_id'])) { + $issue['deployment_id'] = $service['deployment_id']; + } + if (($issue['coolify_target_id'] ?? null) === null && isset($service['coolify_target_id'])) { + $issue['coolify_target_id'] = $service['coolify_target_id']; + } + if (($issue['service_set_id'] ?? null) === null && isset($service['service_set_id'])) { + $issue['service_set_id'] = $service['service_set_id']; + } + $issue['key'] = self::releaseStatusIssueKey($issue); + $issue['impact'] = $issue['impact'] !== '' ? $issue['impact'] : self::releaseStatusIssueImpact($issue); + $issue['resolution_state'] = self::releaseStatusResolutionState($issue); + $issue['actions'] = $this->releaseStatusIssueActions($issue, $channel, $service, $channelBundles); + return $issue; + } + + private function releaseStatusIssueActions(array $issue, array $channel, ?array $service, array $channelBundles): array + { + $type = (string)($issue['type'] ?? ''); + $missingKey = (string)($issue['missing_key'] ?? ''); + $serviceKey = (string)($issue['service_key'] ?? ''); + $actions = []; + + if ($type === 'failed_deployment') { + $actions[] = self::releaseStatusAction( + 'retry_deployment', + 'Retry deployment', + 'mutation', + true, + empty($issue['deployment_id']), + empty($issue['deployment_id']) ? 'The failed deployment record is missing.' : '' + ); + if (self::releaseStatusIssueNeedsApplicationTarget($issue)) { + $actions[] = self::releaseStatusAction( + 'prepare_application_target', + 'Prepare application target', + 'mutation', + true, + empty($issue['target_id']), + empty($issue['target_id']) ? 'The deployment target is missing.' : '' + ); + } + } + + if ($type === 'missing_value' && in_array($missingKey, ['frontend_version', 'api_version'], true)) { + $actions[] = self::releaseStatusAction( + 'deploy_missing_version', + 'Deploy missing version', + 'mutation', + true, + empty($issue['target_id']), + empty($issue['target_id']) ? 'Select or create a deployment target first.' : '' + ); + } + + if ($type === 'missing_value' && $missingKey === 'release_bundle') { + $eligibleBundles = self::releaseStatusEligibleBundles($channelBundles); + $actions[] = self::releaseStatusAction( + 'set_bundle', + count($eligibleBundles) === 1 ? 'Set available bundle' : 'Choose release bundle', + 'mutation', + true, + count($eligibleBundles) !== 1, + $eligibleBundles === [] ? 'No deployed bundle is available for this channel.' : '', + ['bundle_choices' => $eligibleBundles] + ); + } + + if ($type === 'missing_value' && in_array($missingKey, ['database_service', 'redis_service', 'minio_service'], true)) { + $actions[] = self::releaseStatusAction( + 'complete_data_services', + 'Create missing data services', + 'mutation', + true, + empty($issue['service_set_id']), + empty($issue['service_set_id']) ? 'The isolated service set is missing.' : '' + ); + } + + if ($type === 'service_unhealthy' && in_array($serviceKey, self::STACK_DATA_KINDS, true)) { + foreach ([ + 'reconcile_coolify_target' => 'Reconcile target', + 'redeploy_coolify_target' => 'Redeploy target', + 'restart_coolify_target' => 'Restart target', + ] as $id => $label) { + $actions[] = self::releaseStatusAction( + $id, + $label, + 'mutation', + true, + empty($issue['coolify_target_id']), + empty($issue['coolify_target_id']) ? 'The Coolify target is missing.' : '' + ); + } + } + + if ($type === 'deployment_in_progress') { + $actions[] = self::releaseStatusAction('refresh_status', 'Refresh status', 'refresh', false, false); + } + + return $actions; + } + + private static function releaseStatusAction( + string $id, + string $label, + string $kind, + bool $requiresConfirmation, + bool $requiresInput, + string $disabledReason = '', + array $extra = [] + ): array { + return array_replace([ + 'id' => $id, + 'label' => $label, + 'kind' => $kind, + 'requires_confirmation' => $requiresConfirmation, + 'requires_input' => $requiresInput, + 'disabled_reason' => $disabledReason, + 'permission' => 'superuser_release_manager_deploy', + ], $extra); + } + + private static function releaseStatusIssueKey(array $issue): string + { + return implode(':', [ + self::safeIdentifier((string)($issue['type'] ?? 'unknown'), 32) ?: 'unknown', + self::safeIdentifier((string)($issue['channel_id'] ?? $issue['channel_slug'] ?? ''), 64), + self::safeIdentifier((string)($issue['service_key'] ?? ''), 32), + self::safeIdentifier((string)($issue['missing_key'] ?? ''), 64), + self::safeIdentifier((string)($issue['deployment_id'] ?? ''), 64), + self::safeIdentifier((string)($issue['coolify_target_id'] ?? ''), 64), + ]); + } + + private static function releaseStatusIssueImpact(array $issue): string + { + return match ((string)($issue['type'] ?? '')) { + 'failed_deployment' => 'This channel cannot be promoted until the failed deployment is replaced by a successful one.', + 'missing_value' => 'This channel is incomplete and cannot receive traffic safely.', + 'service_unhealthy' => 'This channel has an unhealthy runtime service and should not be promoted.', + 'deployment_in_progress' => 'Promotion should wait until the deployment or provisioning job finishes.', + default => 'Review this release issue before publishing or promoting the channel.', + }; + } + + private static function releaseStatusResolutionState(array $issue): string + { + if ((string)($issue['severity'] ?? '') === 'critical') { + return 'blocked'; + } + if ((string)($issue['severity'] ?? '') === 'warning') { + return 'action_available'; + } + return 'open'; + } + + private static function releaseStatusIssueNeedsApplicationTarget(array $issue): bool + { + $text = strtolower(trim((string)($issue['message'] ?? '') . ' ' . (string)($issue['next_action'] ?? ''))); + return str_contains($text, 'stripprefix') || str_contains($text, 'path-routed'); + } + + private static function releaseStatusEligibleBundles(array $bundles): array + { + $eligible = []; + foreach ($bundles as $bundle) { + $status = strtolower((string)($bundle['status'] ?? '')); + if (!in_array($status, ['deployed', 'promoted', 'active'], true)) { + continue; + } + $eligible[] = [ + 'id' => (int)($bundle['id'] ?? 0), + 'label' => (string)($bundle['version_label'] ?? ('Bundle #' . (int)($bundle['id'] ?? 0))), + 'status' => (string)($bundle['status'] ?? ''), + ]; + } + return $eligible; } private static function releaseStatusSeverityRank(string $severity): int @@ -1362,6 +2935,10 @@ class release_manager return array_map(function (array $channel): array { $public = $this->publicChannel($channel); $public['versions'] = $this->currentVersionsForChannel((int)$channel['id']); + $public['current_deployments'] = $this->channelCurrentDeployments((int)$channel['id']); + $public['branch_status'] = $this->channelBranchStatus($channel); + $public['data_services'] = $this->channelDataServicesSummary($channel); + $public['replication_policy'] = $public['data_services']['policy'] ?? $this->replicationPolicyForMode('production_shared'); return $public; }, $channels); } @@ -1600,11 +3177,37 @@ class release_manager $deployContext[$key] = $this->toBool($input[$key]); } } - foreach (['coolify_domain', 'coolify_public_url', 'coolify_url_name'] as $key) { + foreach (['coolify_domain', 'coolify_public_url', 'coolify_url_name', 'manual_endpoint_host', 'coolify_ports_exposes'] as $key) { if (array_key_exists($key, $input)) { $deployContext[$key] = trim((string)$input[$key]); } } + if (array_key_exists('endpoint_mode', $input)) { + $mode = strtolower(trim((string)$input['endpoint_mode'])); + $deployContext['endpoint_mode'] = $mode === 'manual' ? 'manual' : 'auto'; + } elseif (!isset($deployContext['endpoint_mode'])) { + $deployContext['endpoint_mode'] = 'auto'; + } + if (array_key_exists('manual_endpoint_port', $input)) { + $port = trim((string)$input['manual_endpoint_port']); + $deployContext['manual_endpoint_port'] = $port; + } + $endpointMode = strtolower(trim((string)($deployContext['endpoint_mode'] ?? 'auto'))) === 'manual' ? 'manual' : 'auto'; + $deployContext['endpoint_mode'] = $endpointMode; + if ($endpointMode === 'manual') { + $manualHost = self::normalizeEndpointHost($deployContext['manual_endpoint_host'] ?? ''); + if ($manualHost === '') { + throw new RuntimeException('Manual endpoint mode requires a public host.'); + } + $deployContext['manual_endpoint_host'] = $manualHost; + } + if (array_key_exists('manual_endpoint_port', $deployContext)) { + $manualPort = trim((string)$deployContext['manual_endpoint_port']); + if ($manualPort !== '' && (filter_var($manualPort, FILTER_VALIDATE_INT) === false || (int)$manualPort < 1 || (int)$manualPort > 65535)) { + throw new RuntimeException('Manual endpoint port must be between 1 and 65535.'); + } + $deployContext['manual_endpoint_port'] = $manualPort; + } foreach ([ 'coolify_project_uuid', 'project_uuid', @@ -2137,6 +3740,11 @@ class release_manager } $channelId = (int)$bundle['channel_id']; + $this->assertReleaseGatePassedForPromotion( + $channelId, + (string)($bundle['frontend_commit_sha'] ?? ''), + null + ); $frontendVersionId = $this->nullablePositiveInt($bundle['frontend_version_id'] ?? null); $apiVersionId = $this->nullablePositiveInt($bundle['api_version_id'] ?? null); $deploymentId = $this->nullablePositiveInt($bundle['api_deployment_id'] ?? null) @@ -2153,7 +3761,7 @@ class release_manager ); $this->execute( "UPDATE release_deployments - SET status = 'superseded' + SET status = 'superseded', active_channel_app_key = NULL WHERE channel_id = ? AND bundle_id IS NOT NULL AND bundle_id <> ? AND status = 'active'", 'ii', [$channelId, $bundleId] @@ -2172,12 +3780,13 @@ class release_manager 'i', [$bundleId] ); - $this->execute( - "UPDATE release_deployments SET status = 'active', completed_at = COALESCE(completed_at, NOW()) - WHERE bundle_id = ? AND status IN ('deployed', 'queued', 'deploying')", - 'i', - [$bundleId] - ); + foreach ($this->selectRows('SELECT id, app FROM release_deployments WHERE bundle_id = ?', 'i', [$bundleId]) as $bundleDeployment) { + $bundleDeploymentId = (int)($bundleDeployment['id'] ?? 0); + $app = (string)($bundleDeployment['app'] ?? ''); + if ($bundleDeploymentId > 0 && in_array($app, self::APPS, true)) { + $this->activateDeploymentForChannelApp($bundleDeploymentId, $channelId, $app); + } + } foreach ([$frontendVersionId, $apiVersionId] as $versionId) { if ($versionId !== null) { $this->execute( @@ -2439,6 +4048,11 @@ class release_manager } $channelId = (int)$deployment['channel_id']; + $this->assertReleaseGatePassedForPromotion( + $channelId, + (string)($deployment['app'] ?? '') === 'frontend' ? (string)($deployment['commit_sha'] ?? '') : '', + null + ); $current = $this->currentChannelVersionRow($channelId); $frontendVersionId = (int)($current['frontend_version_id'] ?? 0) ?: null; $apiVersionId = (int)($current['api_version_id'] ?? 0) ?: null; @@ -2455,7 +4069,7 @@ class release_manager 'iiiii', [$channelId, $frontendVersionId, $apiVersionId, $deploymentId, $actorUserId] ); - $this->execute("UPDATE release_deployments SET status = 'active', completed_at = COALESCE(completed_at, NOW()) WHERE id = ?", 'i', [$deploymentId]); + $this->activateDeploymentForChannelApp($deploymentId, $channelId, (string)$deployment['app']); $this->execute("UPDATE release_versions SET status = 'active', deployed_at = COALESCE(deployed_at, NOW()) WHERE id = ?", 'i', [$versionId]); $this->audit($channelId, $deploymentId, 'deployment_promoted', $actorUserId, 'info', [ @@ -2488,20 +4102,51 @@ class release_manager $this->execute('UPDATE release_channel_versions SET active = 0 WHERE channel_id = ?', 'i', [$channelId]); $this->execute( - "INSERT INTO release_channel_versions (channel_id, frontend_version_id, api_version_id, deployment_id, actor_user_id, active) - VALUES (?, ?, ?, ?, ?, 1)", - 'iiiii', + "INSERT INTO release_channel_versions ( + channel_id, frontend_version_id, api_version_id, deployment_id, + service_set_id, bundle_id, actor_user_id, active + ) VALUES (?, ?, ?, ?, ?, ?, ?, 1)", + 'iiiiiii', [ $channelId, (int)($previous['frontend_version_id'] ?? 0) ?: null, (int)($previous['api_version_id'] ?? 0) ?: null, (int)($previous['deployment_id'] ?? 0) ?: null, + (int)($previous['service_set_id'] ?? 0) ?: null, + (int)($previous['bundle_id'] ?? 0) ?: null, $actorUserId, ] ); + foreach (self::APPS as $app) { + $versionId = $this->nullablePositiveInt($previous[$app . '_version_id'] ?? null); + if ($versionId === null) { + continue; + } + $deployment = $this->selectOne( + "SELECT id FROM release_deployments + WHERE channel_id = ? AND app = ? AND version_id = ? + ORDER BY completed_at DESC, id DESC + LIMIT 1", + 'isi', + [$channelId, $app, $versionId] + ); + if ($deployment !== null) { + $this->activateDeploymentForChannelApp((int)$deployment['id'], $channelId, $app); + } + $this->execute( + "UPDATE release_versions SET status = 'active', deployed_at = COALESCE(deployed_at, NOW()) WHERE id = ?", + 'i', + [$versionId] + ); + } $this->audit($channelId, (int)($previous['deployment_id'] ?? 0) ?: null, 'channel_rolled_back', $actorUserId, 'warning', [ 'previous_channel_version_id' => $previous['id'] ?? null, + 'frontend_version_id' => $this->nullablePositiveInt($previous['frontend_version_id'] ?? null), + 'api_version_id' => $this->nullablePositiveInt($previous['api_version_id'] ?? null), + 'service_set_id' => $this->nullablePositiveInt($previous['service_set_id'] ?? null), + 'bundle_id' => $this->nullablePositiveInt($previous['bundle_id'] ?? null), + 'public_smoke_required' => true, ]); return [ @@ -2812,6 +4457,20 @@ class release_manager throw new RuntimeException('GitHub push payload is missing repository, branch, or commit.'); } + $normalizedRepository = self::normalizeGithubRepositoryName($repository); + if ($normalizedRepository !== '') { + $repository = $normalizedRepository; + } + + $mappedChannelSlug = self::channelSlugForRoute($branch); + $mappedChannel = $this->findChannelBySlug($mappedChannelSlug); + $mappedApp = ''; + if ($repository === self::defaultRepositoryForApp('frontend')) { + $mappedApp = 'frontend'; + } elseif ($repository === self::defaultRepositoryForApp('api')) { + $mappedApp = 'api'; + } + $targets = $this->selectRows( "SELECT * FROM release_deployment_targets WHERE deleted_at IS NULL AND auto_deploy = 1 AND repository = ? AND branch = ?", @@ -2820,7 +4479,21 @@ class release_manager ); $deployments = []; + $operations = []; + if ($mappedChannel !== null && $mappedApp !== '') { + $operations[] = $this->syncChannel((int)$mappedChannel['id'], null, [ + 'app' => $mappedApp, + 'source' => 'github_webhook', + 'repository' => $repository, + 'commit_sha' => $commitSha, + 'build_url' => (string)($payload['compare'] ?? ''), + ]); + } + foreach ($targets as $target) { + if ($mappedChannel !== null && $mappedApp !== '') { + continue; + } $deployments[] = $this->startDeployment([ 'target_id' => (int)$target['id'], 'channel_id' => (int)$target['channel_id'], @@ -2849,6 +4522,9 @@ class release_manager 'repository' => $repository, 'branch' => $branch, 'commit_sha' => $commitSha, + 'mapped_channel_slug' => $mappedChannelSlug, + 'mapped_app' => $mappedApp !== '' ? $mappedApp : null, + 'operations' => $operations, 'deployments' => $deployments, ]; } @@ -3041,11 +4717,6 @@ class release_manager } } - $requestedChannel = $this->findChannelBySlug($requestedSlug); - if ($requestedChannel !== null && (int)($requestedChannel['enabled'] ?? 0) === 1) { - return $requestedChannel; - } - return $resolvedChannel; } @@ -3225,9 +4896,6 @@ class release_manager $versions = $this->currentVersionsForChannel($channelId); $urls = $this->releaseRuntimeUrls($channel, $versions); $missing = []; - if (empty($versions['bundle_id'])) { - $missing[] = 'release_bundle'; - } if (empty($versions['frontend'])) { $missing[] = 'frontend_version'; } elseif (empty($urls['frontend_base_url'])) { @@ -4242,8 +5910,255 @@ class release_manager return $firstServerUuid; } + private function releaseDeploymentEndpoint(array $target): array + { + $context = is_array($target['deploy_context'] ?? null) + ? $target['deploy_context'] + : self::jsonDecode($target['deploy_context_json'] ?? null); + $mode = strtolower(trim((string)($context['endpoint_mode'] ?? 'auto'))) === 'manual' ? 'manual' : 'auto'; + $app = (string)($target['app'] ?? ''); + + if ($mode === 'manual') { + $host = self::normalizeEndpointHost($context['manual_endpoint_host'] ?? ''); + $port = $this->releaseEndpointPort($context['manual_endpoint_port'] ?? null); + if ($host !== '') { + return $this->releaseEndpointFromParts( + 'manual', + 'resolved', + $host, + $port, + 'manual', + 'Manual endpoint override is configured.' + ); + } + + return self::releasePendingEndpoint( + 'manual', + 'manual', + 'Manual endpoint mode needs a public host before deployment.' + ); + } + + foreach ([ + 'coolify_public_url' => 'coolify_public_url', + 'health_url' => 'health_url', + 'coolify_domain' => 'coolify_domain', + ] as $key => $source) { + $value = $key === 'health_url' + ? ($target['health_url'] ?? null) + : ($context[$key] ?? null); + $url = $key === 'coolify_domain' + ? $this->releaseRoutedPublicBaseUrl($value, $target, $context) + : ($key === 'coolify_public_url' + ? $this->releaseRoutedPublicBaseUrl($value, $target, $context) + : $this->normalizeReleasePublicBaseUrl($value, $app)); + if ($url !== null) { + return $this->releaseEndpointFromUrl( + $url, + 'auto', + 'resolved', + $source, + 'Automatic endpoint resolved from ' . str_replace('_', ' ', $source) . '.' + ); + } + } + + $gatewayUrl = $this->releaseAutoGatewayPublicBaseUrl($target, $context); + if ($gatewayUrl !== null) { + return $this->releaseEndpointFromUrl( + $gatewayUrl, + 'auto', + 'pending', + 'auto_gateway', + 'Automatic gateway endpoint will be used when Coolify routing is ready.' + ); + } + + foreach ([ + 'coolify_deployed_public_url', + 'deployed_public_url', + 'resource_public_url', + 'public_url', + 'coolify_deployed_url', + 'deployed_url', + ] as $key) { + $url = $this->normalizeReleasePublicBaseUrl($context[$key] ?? null, $app); + if ($url !== null) { + return $this->releaseEndpointFromUrl( + $url, + 'auto', + 'resolved', + 'coolify_resource_metadata', + 'Automatic endpoint resolved from deployed Coolify resource metadata.' + ); + } + } + + return self::releasePendingEndpoint( + 'auto', + 'auto', + 'Automatic endpoint resolution is pending deployment metadata.' + ); + } + + private static function releasePendingEndpoint(string $mode, string $source, string $message): array + { + return [ + 'mode' => $mode, + 'status' => 'pending', + 'host' => null, + 'port' => null, + 'url' => null, + 'source' => $source, + 'message' => $message, + ]; + } + + private function releaseEndpointFromUrl(string $url, string $mode, string $status, string $source, string $message): array + { + $normalized = $this->normalizeReleasePublicBaseUrl($url); + if ($normalized === null) { + return self::releasePendingEndpoint($mode, $source, $message); + } + + $parts = parse_url($normalized); + if (!is_array($parts) || empty($parts['host'])) { + return self::releasePendingEndpoint($mode, $source, $message); + } + + $scheme = strtolower((string)($parts['scheme'] ?? 'https')); + $port = isset($parts['port']) ? (int)$parts['port'] : ($scheme === 'http' ? 80 : 443); + return [ + 'mode' => $mode, + 'status' => $status, + 'host' => strtolower((string)$parts['host']), + 'port' => $port, + 'url' => $normalized, + 'source' => $source, + 'message' => $message, + ]; + } + + private function releaseEndpointFromParts( + string $mode, + string $status, + string $host, + ?int $port, + string $source, + string $message + ): array { + $host = self::normalizeEndpointHost($host); + if ($host === '') { + return self::releasePendingEndpoint($mode, $source, $message); + } + + $url = 'https://' . $host . ($port !== null && $port !== 443 ? ':' . $port : ''); + return [ + 'mode' => $mode, + 'status' => $status, + 'host' => strtolower($host), + 'port' => $port, + 'url' => $url, + 'source' => $source, + 'message' => $message, + ]; + } + + private function releaseEndpointPort(mixed $value): ?int + { + $raw = trim((string)$value); + if ($raw === '') { + return null; + } + if (filter_var($raw, FILTER_VALIDATE_INT) === false) { + return null; + } + $port = (int)$raw; + return $port >= 1 && $port <= 65535 ? $port : null; + } + + private static function normalizeEndpointHost(mixed $value): string + { + $raw = trim((string)$value); + if ($raw === '') { + return ''; + } + if (preg_match('#^https?://#i', $raw) === 1) { + $parts = parse_url($raw); + $raw = is_array($parts) ? (string)($parts['host'] ?? '') : ''; + } + $raw = trim($raw); + $raw = preg_replace('#[/\s].*$#', '', $raw) ?? ''; + if (str_contains($raw, ':') && preg_match('/^\[[^\]]+\]:(\d+)$/', $raw) !== 1) { + $parts = parse_url('https://' . $raw); + if (is_array($parts) && !empty($parts['host'])) { + $raw = (string)$parts['host']; + } + } + return strtolower(trim($raw, " \t\n\r\0\x0B[]")); + } + + private function releaseAutoGatewayPublicBaseUrl(array $target, array $context): ?string + { + $host = $this->releasePublicGatewayHost($context); + if ($host === '') { + return null; + } + + return $this->releaseRoutedPublicBaseUrl('https://' . $host, $target, array_replace($context, [ + 'gateway_route_autoprovision' => false, + ])); + } + + private function releasePublicGatewayHost(array $context = []): string + { + foreach ([ + $context['public_gateway_host'] ?? null, + $context['coolify_public_gateway_host'] ?? null, + ] as $value) { + $host = self::normalizeEndpointHost($value); + if ($host !== '') { + return $host; + } + } + + foreach ([ + getenv('RELEASE_MANAGER_PUBLIC_GATEWAY_HOST') ?: ($_SERVER['RELEASE_MANAGER_PUBLIC_GATEWAY_HOST'] ?? null), + getenv('COOLIFY_PUBLIC_GATEWAY_HOST') ?: ($_SERVER['COOLIFY_PUBLIC_GATEWAY_HOST'] ?? null), + ] as $value) { + $host = self::normalizeEndpointHost($value); + if ($host !== '') { + return $host; + } + } + + try { + if ($this->tableExists('module_config')) { + $host = self::normalizeEndpointHost($this->moduleConfigValue('Coolify', 'public_gateway_host', '')); + if ($host !== '') { + return $host; + } + } + } catch (Throwable) { + } + + return 'api-v2.truckwash.io'; + } + private function releaseCoolifyPublicUrl(array $target, array $context): ?string { + $endpoint = $this->releaseDeploymentEndpoint($target + ['deploy_context' => $context]); + if (!empty($endpoint['url']) && in_array((string)($endpoint['source'] ?? ''), [ + 'manual', + 'coolify_public_url', + 'health_url', + 'coolify_domain', + 'auto_gateway', + 'coolify_resource_metadata', + ], true)) { + return (string)$endpoint['url']; + } + $explicitPublicUrl = $this->releaseRoutedPublicBaseUrl($context['coolify_public_url'] ?? null, $target, $context); if ($explicitPublicUrl !== null) { return $explicitPublicUrl; @@ -4309,12 +6224,13 @@ class release_manager if ($channelSlug === '' || $appSlug === '') { return $baseUrl; } + $routeSlug = self::routeSlugForChannel($channelSlug); $scheme = strtolower((string)($parts['scheme'] ?? 'https')); $host = strtolower((string)$parts['host']); $port = isset($parts['port']) ? ':' . (int)$parts['port'] : ''; - return sprintf('%s://%s%s/%s/%s', $scheme, $host, $port, $channelSlug, $appSlug); + return sprintf('%s://%s%s/%s/%s', $scheme, $host, $port, $routeSlug, $appSlug); } private function releaseTargetPublicBaseUrl(array $target): ?string @@ -4323,9 +6239,15 @@ class release_manager ? $target['deploy_context'] : self::jsonDecode($target['deploy_context_json'] ?? null); $app = (string)($target['app'] ?? ''); - return $this->releaseRoutedPublicBaseUrl($context['coolify_public_url'] ?? null, $target, $context) + $endpoint = is_array($target['endpoint'] ?? null) + ? $target['endpoint'] + : $this->releaseDeploymentEndpoint($target + ['deploy_context' => $context]); + return $this->normalizeReleasePublicBaseUrl($endpoint['url'] ?? null, $app) + ?? $this->releaseRoutedPublicBaseUrl($context['coolify_public_url'] ?? null, $target, $context) + ?? $this->normalizeReleasePublicBaseUrl($target['health_url'] ?? null, $app) ?? $this->releaseRoutedPublicBaseUrl($context['coolify_domain'] ?? null, $target, $context) - ?? $this->normalizeReleasePublicBaseUrl($target['health_url'] ?? null, $app); + ?? (is_array($target['endpoint'] ?? null) ? ($target['endpoint']['url'] ?? null) : null) + ?? ($this->releaseDeploymentEndpoint($target)['url'] ?? null); } private function timelineSessionContext(array $context): array @@ -4544,6 +6466,431 @@ class release_manager ); } + private static function releaseBranchForChannel(array|string $channel): string + { + $slug = is_array($channel) ? (string)($channel['slug'] ?? '') : $channel; + $routeSlug = self::routeSlugForChannel($slug); + return $routeSlug !== '' ? $routeSlug : self::DEFAULT_BRANCH; + } + + private static function defaultRepositoryForApp(string $app): string + { + return match (strtolower(trim($app))) { + 'frontend' => 'copenhagentruckwash/pleno-vue', + 'api' => 'copenhagentruckwash/api', + default => '', + }; + } + + private function getOperationRun(int $id): array + { + $row = $this->selectOne( + "SELECT r.*, c.slug AS channel_slug, c.name AS channel_name, + (SELECT COUNT(*) FROM release_operation_steps s WHERE s.operation_run_id = r.id) AS step_count, + (SELECT COUNT(*) FROM release_operation_steps s WHERE s.operation_run_id = r.id AND s.status IN ('passed', 'deployed')) AS passed_step_count, + (SELECT COUNT(*) FROM release_operation_steps s WHERE s.operation_run_id = r.id AND s.status = 'failed') AS failed_step_count, + (SELECT COUNT(*) FROM release_operation_steps s WHERE s.operation_run_id = r.id AND s.status IN ('warning', 'skipped')) AS warning_step_count + FROM release_operation_runs r + LEFT JOIN release_channels c ON c.id = r.channel_id + WHERE r.id = ? + LIMIT 1", + 'i', + [$id] + ); + if ($row === null) { + throw new RuntimeException('Release operation not found.'); + } + return $row; + } + + private function createOperationRun(string $operationType, array $input): int + { + $operationType = self::safeIdentifier($operationType, 64) ?: 'operation'; + $subjectType = self::safeIdentifier((string)($input['subject_type'] ?? ''), 64) ?: null; + $subjectId = trim((string)($input['subject_id'] ?? '')) ?: null; + $channelId = $this->nullablePositiveInt($input['channel_id'] ?? null); + $app = trim((string)($input['app'] ?? '')) !== '' ? $this->normalizeApp((string)$input['app']) : null; + $title = substr(trim((string)($input['title'] ?? $operationType)), 0, 255); + $context = is_array($input['context'] ?? null) ? $input['context'] : []; + $actorUserId = $this->nullablePositiveInt($input['actor_user_id'] ?? null); + + $this->execute( + "INSERT INTO release_operation_runs ( + operation_type, subject_type, subject_id, channel_id, app, status, + title, actor_user_id, context_json, started_at + ) VALUES (?, ?, ?, ?, ?, 'running', ?, ?, ?, NOW())", + 'sssissis', + [ + $operationType, + $subjectType, + $subjectId, + $channelId, + $app, + $title, + $actorUserId, + self::jsonEncode(self::redactPayload($context)), + ] + ); + + return $this->insertId(); + } + + private function recordOperationStep( + int $operationId, + string $stepKey, + string $label, + string $status, + ?string $message = null, + ?string $diagnostic = null, + ?string $solutionHint = null, + array $context = [] + ): void { + $stepKey = self::safeIdentifier($stepKey, 64) ?: 'step'; + $status = self::safeIdentifier($status, 32) ?: 'queued'; + $completedSql = in_array($status, ['passed', 'deployed', 'failed', 'warning', 'skipped'], true) ? 'NOW()' : 'NULL'; + $this->execute( + "INSERT INTO release_operation_steps ( + operation_run_id, step_key, label, status, message, diagnostic, + solution_hint, context_json, started_at, completed_at + ) VALUES (?, ?, ?, ?, ?, ?, ?, ?, NOW(), $completedSql)", + 'isssssss', + [ + $operationId, + $stepKey, + substr($label, 0, 255), + $status, + $message, + $diagnostic, + $solutionHint, + self::jsonEncode(self::redactPayload($context)), + ] + ); + } + + private function completeOperationRun(int $operationId, string $status, string $summary, ?string $solutionHint = null): void + { + $status = self::safeIdentifier($status, 32) ?: 'completed'; + $this->execute( + "UPDATE release_operation_runs + SET status = ?, summary = ?, solution_hint = ?, completed_at = NOW() + WHERE id = ?", + 'sssi', + [$status, $summary, $solutionHint, $operationId] + ); + } + + private function publicOperationRun(array $operation, bool $includeSteps = true): array + { + $operationId = (int)($operation['id'] ?? 0); + $steps = []; + if ($includeSteps && $operationId > 0) { + $steps = array_map( + fn(array $row): array => $this->publicOperationStep($row), + $this->selectRows( + 'SELECT * FROM release_operation_steps WHERE operation_run_id = ? ORDER BY id ASC', + 'i', + [$operationId] + ) + ); + } + + return [ + 'id' => $operationId, + 'operation_type' => (string)($operation['operation_type'] ?? ''), + 'subject_type' => $operation['subject_type'] ?? null, + 'subject_id' => $operation['subject_id'] ?? null, + 'channel_id' => isset($operation['channel_id']) ? (int)$operation['channel_id'] : null, + 'channel_slug' => $operation['channel_slug'] ?? null, + 'channel_name' => $operation['channel_name'] ?? null, + 'app' => $operation['app'] ?? null, + 'status' => (string)($operation['status'] ?? 'unknown'), + 'title' => $operation['title'] ?? null, + 'summary' => $operation['summary'] ?? null, + 'solution_hint' => $operation['solution_hint'] ?? null, + 'context' => self::jsonDecode($operation['context_json'] ?? null), + 'step_count' => (int)($operation['step_count'] ?? count($steps)), + 'passed_step_count' => (int)($operation['passed_step_count'] ?? 0), + 'failed_step_count' => (int)($operation['failed_step_count'] ?? 0), + 'warning_step_count' => (int)($operation['warning_step_count'] ?? 0), + 'steps' => $includeSteps ? $steps : null, + 'actor_user_id' => isset($operation['actor_user_id']) ? (int)$operation['actor_user_id'] : null, + 'started_at' => $operation['started_at'] ?? null, + 'completed_at' => $operation['completed_at'] ?? null, + 'created_at' => $operation['created_at'] ?? null, + 'updated_at' => $operation['updated_at'] ?? null, + ]; + } + + private function publicOperationStep(array $step): array + { + return [ + 'id' => (int)($step['id'] ?? 0), + 'operation_run_id' => (int)($step['operation_run_id'] ?? 0), + 'step_key' => (string)($step['step_key'] ?? ''), + 'label' => (string)($step['label'] ?? ''), + 'status' => (string)($step['status'] ?? 'unknown'), + 'message' => $step['message'] ?? null, + 'diagnostic' => $step['diagnostic'] ?? null, + 'solution_hint' => $step['solution_hint'] ?? null, + 'context' => self::jsonDecode($step['context_json'] ?? null), + 'started_at' => $step['started_at'] ?? null, + 'completed_at' => $step['completed_at'] ?? null, + 'created_at' => $step['created_at'] ?? null, + 'updated_at' => $step['updated_at'] ?? null, + ]; + } + + private function activeDeploymentKey(int $channelId, string $app): string + { + return $channelId . ':' . $this->normalizeApp($app); + } + + private function activateDeploymentForChannelApp(int $deploymentId, int $channelId, string $app): void + { + $app = $this->normalizeApp($app); + $key = $this->activeDeploymentKey($channelId, $app); + $this->execute( + "UPDATE release_deployments + SET status = 'superseded', active_channel_app_key = NULL + WHERE active_channel_app_key = ? AND id <> ?", + 'si', + [$key, $deploymentId] + ); + $this->execute( + "UPDATE release_deployments + SET status = 'superseded', active_channel_app_key = NULL + WHERE channel_id = ? AND app = ? AND id <> ? AND status = 'active'", + 'isi', + [$channelId, $app, $deploymentId] + ); + $this->execute( + "UPDATE release_deployments + SET status = 'active', active_channel_app_key = ?, completed_at = COALESCE(completed_at, NOW()) + WHERE id = ?", + 'si', + [$key, $deploymentId] + ); + } + + private function currentDeploymentForChannelApp(int $channelId, string $app): ?array + { + $app = $this->normalizeApp($app); + $key = $this->activeDeploymentKey($channelId, $app); + $row = $this->selectOne( + "SELECT d.*, c.slug AS channel_slug, c.name AS channel_name, v.version_label, v.deployed_url + FROM release_deployments d + INNER JOIN release_channels c ON c.id = d.channel_id + LEFT JOIN release_versions v ON v.id = d.version_id + WHERE d.active_channel_app_key = ? + LIMIT 1", + 's', + [$key] + ); + if ($row !== null) { + return $row; + } + + return $this->selectOne( + "SELECT d.*, c.slug AS channel_slug, c.name AS channel_name, v.version_label, v.deployed_url + FROM release_deployments d + INNER JOIN release_channels c ON c.id = d.channel_id + LEFT JOIN release_versions v ON v.id = d.version_id + WHERE d.channel_id = ? AND d.app = ? AND d.status = 'active' + ORDER BY d.completed_at DESC, d.id DESC + LIMIT 1", + 'is', + [$channelId, $app] + ); + } + + private function deploymentTargetForChannelApp(int $channelId, string $app): ?array + { + return $this->selectOne( + "SELECT t.*, c.slug AS channel_slug, c.name AS channel_name, i.label AS coolify_instance_label + FROM release_deployment_targets t + INNER JOIN release_channels c ON c.id = t.channel_id + LEFT JOIN coolify_instances i ON i.id = t.coolify_instance_id + WHERE t.deleted_at IS NULL AND t.channel_id = ? AND t.app = ? + ORDER BY t.auto_deploy DESC, t.id DESC + LIMIT 1", + 'is', + [$channelId, $this->normalizeApp($app)] + ); + } + + private function channelCurrentDeployments(int $channelId): array + { + $deployments = []; + foreach (self::APPS as $app) { + $row = $this->currentDeploymentForChannelApp($channelId, $app); + $deployments[$app] = $row !== null ? $this->publicDeployment($row) : null; + } + return $deployments; + } + + private function channelBranchStatus(array $channel): array + { + $channelId = (int)($channel['id'] ?? 0); + $branch = self::releaseBranchForChannel($channel); + $status = []; + foreach (self::APPS as $app) { + $target = $this->deploymentTargetForChannelApp($channelId, $app); + $repository = trim((string)($target['repository'] ?? self::defaultRepositoryForApp($app))); + $status[$app] = [ + 'repository' => $repository, + 'branch' => $branch, + 'route_slug' => self::routeSlugForChannel((string)($channel['slug'] ?? '')), + 'target_configured' => $target !== null, + 'target_branch' => $target['branch'] ?? null, + 'state' => $target !== null ? 'ready_to_check' : 'missing_target', + 'retry_action' => $target !== null ? 'sync_channel' : 'configure_target', + ]; + } + return $status; + } + + private function releaseDataServicesSummary(): array + { + $summary = []; + foreach ($this->selectRows("SELECT * FROM release_channels WHERE deleted_at IS NULL ORDER BY default_channel DESC, slug") as $channel) { + $summary[(string)$channel['slug']] = $this->channelDataServicesSummary($channel); + } + return $summary; + } + + private function channelDataServicesSummary(array $channel): array + { + $serviceSet = $this->activeServiceSetForChannel((int)($channel['id'] ?? 0)); + $mode = $serviceSet !== null ? (string)($serviceSet['mode'] ?? 'attach_existing') : 'production_shared'; + $policy = $this->replicationPolicyForMode($mode); + $services = []; + foreach (self::STACK_DATA_KINDS as $kind) { + $target = $serviceSet !== null + ? $this->nullableCoolifyTarget($this->nullablePositiveInt($serviceSet[$kind . '_coolify_target_id'] ?? null)) + : null; + $replication = is_array($target['replication'] ?? null) ? $target['replication'] : []; + $lastStatus = is_array($replication['last_status'] ?? null) ? $replication['last_status'] : []; + $services[$kind] = [ + 'kind' => $kind, + 'mode' => $serviceSet === null ? 'production_shared' : $mode, + 'state' => $target !== null ? (string)($target['availability_state'] ?? 'configured') : 'production_shared', + 'target' => $target, + 'replication_policy' => $policy, + 'default_shared_production' => $serviceSet === null || $mode === 'attach_existing', + 'change_requires_explicit_action' => true, + 'entity_facts' => [ + 'service' => $kind, + 'mode' => $serviceSet === null ? 'production_shared' : $mode, + 'node' => $target['instance_label'] ?? null, + 'online_state' => $target['deployment_status'] ?? $target['availability_state'] ?? 'production_shared', + 'hostname' => $replication['host'] ?? null, + 'port' => $replication['port'] ?? null, + 'uptime' => $lastStatus['uptime'] ?? $lastStatus['uptime_text'] ?? null, + 'version' => $lastStatus['version'] ?? null, + 'replication_role' => $replication['role'] ?? null, + 'replication_lag' => $lastStatus['lag'] ?? $lastStatus['lag_seconds'] ?? null, + 'last_check' => $replication['last_checked_at'] ?? $target['last_reconciled_at'] ?? null, + ], + ]; + } + + return [ + 'channel_id' => (int)($channel['id'] ?? 0), + 'channel_slug' => (string)($channel['slug'] ?? ''), + 'mode' => $serviceSet === null ? 'production_shared' : $mode, + 'policy' => $policy, + 'services' => $services, + ]; + } + + private function releaseReplicationPolicySummary(): array + { + return [ + 'default_mode' => 'production_shared', + 'normal_sync_changes_data_services' => false, + 'allowed_modes' => [ + 'production_shared', + 'attach_existing', + 'clone_existing', + 'fresh_empty', + 'isolated_stack', + ], + 'service_kinds' => self::STACK_DATA_KINDS, + 'change_control' => 'Data service mode changes are only allowed through explicit replication/failover actions.', + ]; + } + + private function replicationPolicyForMode(string $mode): array + { + return [ + 'mode' => $mode, + 'production_shared' => in_array($mode, ['production_shared', 'attach_existing'], true), + 'replication_configurable' => true, + 'failover_configurable' => true, + 'normal_sync_changes_service' => false, + ]; + } + + private function activeServiceSetForChannel(int $channelId): ?array + { + return $this->selectOne( + "SELECT s.*, c.slug AS channel_slug, c.name AS channel_name + FROM release_channel_versions v + INNER JOIN release_service_sets s ON s.id = v.service_set_id + LEFT JOIN release_channels c ON c.id = s.channel_id + WHERE v.channel_id = ? AND v.active = 1 AND s.deleted_at IS NULL + ORDER BY v.activated_at DESC, v.id DESC + LIMIT 1", + 'i', + [$channelId] + ); + } + + private function releaseCoolifySummary(): array + { + $targetCount = (int)($this->selectOne('SELECT COUNT(*) AS total FROM release_deployment_targets WHERE deleted_at IS NULL')['total'] ?? 0); + $instanceCount = $this->tableExists('coolify_instances') + ? (int)($this->selectOne('SELECT COUNT(*) AS total FROM coolify_instances WHERE deleted_at IS NULL')['total'] ?? 0) + : 0; + return [ + 'integrated' => $this->tableExists('coolify_instances'), + 'panel' => 'release_manager', + 'instances' => $instanceCount, + 'deployment_targets' => $targetCount, + 'legacy_route' => '/superuser/configuration/coolify', + 'redirect_panel' => '/superuser/configuration/releases/integrations?panel=coolify', + 'entity_facts' => [ + 'instances' => $instanceCount, + 'deployment_targets' => $targetCount, + 'status' => $this->tableExists('coolify_instances') ? 'integrated' : 'not_configured', + 'last_check' => date('c'), + ], + ]; + } + + private function releaseFailoverSummary(): array + { + $replicationHosts = $this->tableExists('replication_hosts') + ? (int)($this->selectOne('SELECT COUNT(*) AS total FROM replication_hosts')['total'] ?? 0) + : 0; + return [ + 'integrated' => $this->tableExists('replication_hosts'), + 'panel' => 'release_manager', + 'replication_hosts' => $replicationHosts, + 'default_data_mode' => 'production_shared', + 'normal_sync_triggers_failover' => false, + 'legacy_route' => '/superuser/configuration/failover', + 'redirect_panel' => '/superuser/configuration/releases/data-services?panel=failover', + 'entity_facts' => [ + 'replication_hosts' => $replicationHosts, + 'default_data_mode' => 'production_shared', + 'readiness' => $this->tableExists('replication_hosts') ? 'ready' : 'not_configured', + 'normal_sync_triggers_failover' => false, + 'last_check' => date('c'), + ], + ]; + } + private function githubRepositoryAccess(array $input): array { $tokenConfigured = $this->hasGithubApiToken(); @@ -5286,7 +7633,7 @@ class release_manager $slug = self::safeSlug((string)($input['channel_slug'] ?? $input['channel'] ?? '')); if ($slug !== '') { - $channel = $this->findChannelBySlug($slug); + $channel = $this->findChannelBySlug(self::channelSlugForRoute($slug)); if ($channel !== null) { return $channel; } @@ -5747,6 +8094,7 @@ class release_manager return [ 'id' => (int)($channel['id'] ?? 0), 'slug' => (string)($channel['slug'] ?? ''), + 'route_slug' => self::routeSlugForChannel((string)($channel['slug'] ?? '')), 'name' => (string)($channel['name'] ?? ''), 'description' => $channel['description'] ?? null, 'enabled' => (bool)((int)($channel['enabled'] ?? 0)), @@ -6017,6 +8365,8 @@ class release_manager private function publicDeploymentTarget(array $target): array { + $deployContext = self::jsonDecode($target['deploy_context_json'] ?? null); + $targetWithContext = $target + ['deploy_context' => $deployContext]; return [ 'id' => (int)($target['id'] ?? 0), 'channel_id' => (int)($target['channel_id'] ?? 0), @@ -6030,7 +8380,8 @@ class release_manager 'branch' => (string)($target['branch'] ?? ''), 'auto_deploy' => (bool)((int)($target['auto_deploy'] ?? 0)), 'health_url' => $target['health_url'] ?? null, - 'deploy_context' => self::jsonDecode($target['deploy_context_json'] ?? null), + 'deploy_context' => $deployContext, + 'endpoint' => $this->releaseDeploymentEndpoint($targetWithContext), 'created_at' => $target['created_at'] ?? null, 'updated_at' => $target['updated_at'] ?? null, ]; @@ -6318,6 +8669,29 @@ class release_manager return null; } + $replication = !empty($row['host_id']) ? [ + 'id' => (int)$row['host_id'], + 'kind' => (string)($row['host_kind'] ?? $row['kind'] ?? ''), + 'label' => (string)($row['host_label'] ?? ''), + 'host' => $row['host_host'] ?? null, + 'port' => isset($row['host_port']) ? (int)$row['host_port'] : null, + 'role' => (string)($row['host_role'] ?? 'unknown'), + 'status' => (string)($row['host_status'] ?? 'unknown'), + 'source_host_id' => isset($row['host_replication_source_id']) ? (int)$row['host_replication_source_id'] : null, + 'last_status' => self::jsonDecode($row['host_last_status_json'] ?? null), + 'last_checked_at' => $row['host_last_checked_at'] ?? null, + ] : null; + $endpoint = $replication !== null && !empty($replication['host']) + ? $this->releaseEndpointFromParts( + 'auto', + 'resolved', + (string)$replication['host'], + isset($replication['port']) ? (int)$replication['port'] : null, + 'replication_host', + 'Endpoint resolved from the attached replication host.' + ) + : self::releasePendingEndpoint('auto', 'coolify_target', 'Automatic endpoint resolution is pending Coolify target metadata.'); + return [ 'id' => (int)($row['id'] ?? 0), 'kind' => (string)($row['kind'] ?? ''), @@ -6331,18 +8705,8 @@ class release_manager 'availability_state' => (string)($row['availability_state'] ?? 'unknown'), 'last_reconcile_status' => $row['last_reconcile_status'] ?? null, 'last_reconciled_at' => $row['last_reconciled_at'] ?? null, - 'replication' => !empty($row['host_id']) ? [ - 'id' => (int)$row['host_id'], - 'kind' => (string)($row['host_kind'] ?? $row['kind'] ?? ''), - 'label' => (string)($row['host_label'] ?? ''), - 'host' => $row['host_host'] ?? null, - 'port' => isset($row['host_port']) ? (int)$row['host_port'] : null, - 'role' => (string)($row['host_role'] ?? 'unknown'), - 'status' => (string)($row['host_status'] ?? 'unknown'), - 'source_host_id' => isset($row['host_replication_source_id']) ? (int)$row['host_replication_source_id'] : null, - 'last_status' => self::jsonDecode($row['host_last_status_json'] ?? null), - 'last_checked_at' => $row['host_last_checked_at'] ?? null, - ] : null, + 'endpoint' => $endpoint, + 'replication' => $replication, 'options' => self::jsonDecode($row['options_json'] ?? null), ]; } @@ -6366,6 +8730,8 @@ class release_manager 'deployment_kind' => (string)($deployment['deployment_kind'] ?? 'single_app'), 'version_label' => $deployment['version_label'] ?? null, 'app' => (string)($deployment['app'] ?? ''), + 'active_channel_app_key' => $deployment['active_channel_app_key'] ?? null, + 'active_current' => trim((string)($deployment['active_channel_app_key'] ?? '')) !== '', 'provider' => (string)($deployment['provider'] ?? 'coolify'), 'repository' => $deployment['repository'] ?? null, 'branch' => $deployment['branch'] ?? null, diff --git a/services/nginx/app/classes/release_manager_schema_bootstrap.php b/services/nginx/app/classes/release_manager_schema_bootstrap.php index 37937a80..ff88e850 100644 --- a/services/nginx/app/classes/release_manager_schema_bootstrap.php +++ b/services/nginx/app/classes/release_manager_schema_bootstrap.php @@ -157,6 +157,7 @@ class release_manager_schema_bootstrap bundle_id BIGINT UNSIGNED NULL, deployment_kind VARCHAR(32) NOT NULL DEFAULT 'single_app', app VARCHAR(16) NOT NULL, + active_channel_app_key VARCHAR(96) NULL, provider VARCHAR(32) NOT NULL DEFAULT 'coolify', repository VARCHAR(255) NULL, branch VARCHAR(128) NULL, @@ -297,6 +298,47 @@ class release_manager_schema_bootstrap INDEX idx_release_module_health_channel (channel_id, module_key, checked_at) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci", + "CREATE TABLE IF NOT EXISTS release_operation_runs ( + id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, + operation_type VARCHAR(64) NOT NULL, + subject_type VARCHAR(64) NULL, + subject_id VARCHAR(128) NULL, + channel_id BIGINT UNSIGNED NULL, + app VARCHAR(16) NULL, + status VARCHAR(32) NOT NULL DEFAULT 'queued', + title VARCHAR(255) NULL, + summary TEXT NULL, + solution_hint TEXT NULL, + actor_user_id INT NULL, + context_json LONGTEXT NULL, + started_at DATETIME NULL, + completed_at DATETIME NULL, + created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + INDEX idx_release_operation_runs_channel (channel_id, created_at), + INDEX idx_release_operation_runs_subject (subject_type, subject_id, created_at), + INDEX idx_release_operation_runs_type_status (operation_type, status), + INDEX idx_release_operation_runs_created (created_at) + ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci", + + "CREATE TABLE IF NOT EXISTS release_operation_steps ( + id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, + operation_run_id BIGINT UNSIGNED NOT NULL, + step_key VARCHAR(64) NOT NULL, + label VARCHAR(255) NOT NULL, + status VARCHAR(32) NOT NULL DEFAULT 'queued', + message TEXT NULL, + diagnostic TEXT NULL, + solution_hint TEXT NULL, + context_json LONGTEXT NULL, + started_at DATETIME NULL, + completed_at DATETIME NULL, + created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + INDEX idx_release_operation_steps_run (operation_run_id, id), + INDEX idx_release_operation_steps_status (status) + ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci", + "CREATE TABLE IF NOT EXISTS release_audit_logs ( id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, channel_id BIGINT UNSIGNED NULL, @@ -321,6 +363,7 @@ class release_manager_schema_bootstrap self::ensureColumn('release_deployments', 'service_set_id', 'BIGINT UNSIGNED NULL AFTER version_id'); self::ensureColumn('release_deployments', 'bundle_id', 'BIGINT UNSIGNED NULL AFTER service_set_id'); self::ensureColumn('release_deployments', 'deployment_kind', "VARCHAR(32) NOT NULL DEFAULT 'single_app' AFTER bundle_id"); + self::ensureColumn('release_deployments', 'active_channel_app_key', 'VARCHAR(96) NULL AFTER app'); self::ensureColumn('release_timeline_sessions', 'device_type', 'VARCHAR(16) NULL AFTER api_version_id'); self::ensureColumn('release_timeline_sessions', 'browser_name', 'VARCHAR(64) NULL AFTER device_type'); self::ensureColumn('release_timeline_sessions', 'browser_version', 'VARCHAR(64) NULL AFTER browser_name'); @@ -336,9 +379,12 @@ class release_manager_schema_bootstrap self::ensureColumn('release_timeline_sessions', 'last_route_path', 'VARCHAR(255) NULL AFTER api_commit_sha'); self::ensureIndex('release_timeline_sessions', 'idx_release_timeline_device', 'device_type'); self::ensureIndex('release_timeline_sessions', 'idx_release_timeline_release', 'frontend_version_label, api_version_label'); + self::ensureUniqueIndex('release_deployments', 'uniq_release_deployments_active_channel_app', 'active_channel_app_key'); self::ensureModuleConfigDefault('ReleaseManager', 'enabled', 'true', 'bool'); self::ensureModuleConfigDefault('ReleaseManager', 'github_webhook_secret', '', 'string'); + self::ensureModuleConfigDefault('ReleaseManager', 'release_gate_token', '', 'string'); + self::ensureModuleConfigDefault('ReleaseManager', 'release_gate_required_for_promotion', 'true', 'bool'); self::ensureModuleConfigDefault('ReleaseManager', 'github_token', '', 'string'); self::ensureModuleConfigDefault('ReleaseManager', 'github_api_url', 'https://api.github.com', 'string'); self::ensureModuleConfigDefault('ReleaseManager', 'default_retention_days', '14', 'int'); @@ -365,6 +411,8 @@ class release_manager_schema_bootstrap 'release_service_sets', 'release_deployments', 'release_bundles', + 'release_operation_runs', + 'release_operation_steps', 'release_timeline_sessions', 'release_timeline_events', ] as $table) { @@ -457,4 +505,23 @@ class release_manager_schema_bootstrap $db->query("ALTER TABLE `$table` ADD INDEX `$index` ($columns)"); } + + private static function ensureUniqueIndex(string $table, string $index, string $columns): void + { + global $db; + + $table = preg_replace('/[^a-zA-Z0-9_]/', '', $table); + $index = preg_replace('/[^a-zA-Z0-9_]/', '', $index); + if ($table === '' || $index === '') { + return; + } + + $indexSql = $db->escape_string($index); + $result = $db->query("SHOW INDEX FROM `$table` WHERE Key_name = '$indexSql'"); + if ($result !== false && $result->num_rows > 0) { + return; + } + + $db->query("ALTER TABLE `$table` ADD UNIQUE KEY `$index` ($columns)"); + } } diff --git a/services/nginx/app/modules/dynamicimages/images/machine_1.php b/services/nginx/app/modules/dynamicimages/images/machine_1.php index 646d853a..b02ed759 100644 --- a/services/nginx/app/modules/dynamicimages/images/machine_1.php +++ b/services/nginx/app/modules/dynamicimages/images/machine_1.php @@ -19,6 +19,7 @@ class machine_1 extends dynamicimages_image const IMAGE_BUTTON_HIGHLIGHTED_GREEN = 'machine_1_button_highlighted_green.png'; const BUTTON_RESET = 'reset'; const BUTTON_START = 'start'; + const BUTTON_PROGRAM_PICKER = 'program_picker'; // Thumb public int $thumb_position = 1; // 0-11 (default: 0 = up = 270 degrees) public int $thumb_size = 1550; // height and width of the thumb @@ -73,7 +74,6 @@ class machine_1 extends dynamicimages_image $this->drawAsset($this->getAsset(self::IMAGE_PANEL_BACKGROUND), 0, 0); $this->drawProgramWheel(); $this->drawThumb(); - $this->drawStepThumb(); $deferredStartButtons = $this->drawHighlightedButtonSequence(); $this->drawAsset($this->getAsset(self::IMAGE_POWER_BUTTON), 0, 0); $this->drawDeferredHighlightedButtons($deferredStartButtons); @@ -198,7 +198,7 @@ class machine_1 extends dynamicimages_image if (is_string($button)) { $trimmed = trim($button); $specialButton = strtolower($trimmed); - if ($specialButton === self::BUTTON_RESET || $specialButton === self::BUTTON_START) { + if ($specialButton === self::BUTTON_RESET || $specialButton === self::BUTTON_START || $specialButton === self::BUTTON_PROGRAM_PICKER) { return $specialButton; } @@ -255,6 +255,10 @@ class machine_1 extends dynamicimages_image private function getHighlightedButtonCoordinates(int|string $button): ?array { + if ($button === self::BUTTON_PROGRAM_PICKER) { + return $this->getProgramPickerStepCoordinates(); + } + if ($button === self::BUTTON_RESET) { return [ 'x' => 1736, @@ -274,6 +278,25 @@ class machine_1 extends dynamicimages_image return is_int($button) ? $this->getRegularButtonCoordinates($button) : null; } + private function getProgramPickerStepCoordinates(): array + { + $thumbX = 650; + $thumbY = 1290; + $stepSize = 350; + $baseThumb = $this->getAsset(self::IMAGE_WASH_PROGRAMS_THUMB)->resize($this->calculateThumbWidth($this->thumb_size), $this->thumb_size); + $centerX = $thumbX + (int)floor($baseThumb->getWidth() / 2); + $centerY = $thumbY + (int)floor($baseThumb->getHeight() / 2); + $angle = $this->getRotationThumbPosition(); + $radius = ($this->thumb_size / 2) - ($stepSize / 2) - 150; + $rad = deg2rad($angle); + + return [ + 'x' => $centerX + (int)round($radius * cos($rad)) - (int)floor($stepSize / 2), + 'y' => $centerY + (int)round($radius * sin($rad)) - (int)floor($stepSize / 2), + 'size' => $stepSize, + ]; + } + /** * @throws \Exception */ diff --git a/services/nginx/app/modules/selfserve/classes/selfserve_wash_flow.php b/services/nginx/app/modules/selfserve/classes/selfserve_wash_flow.php index 3a8b9079..5e1d1e78 100644 --- a/services/nginx/app/modules/selfserve/classes/selfserve_wash_flow.php +++ b/services/nginx/app/modules/selfserve/classes/selfserve_wash_flow.php @@ -841,6 +841,16 @@ class selfserve_wash_flow implements selfserve_wash_flow_i $tasks = $this->buildDebugTasks($snapshot, (array)($candidates['tasks'] ?? []), $lookups, (array)($options['gateway_workspace'] ?? [])); $actions = $this->buildDebugActions($snapshot, (array)($candidates['actions'] ?? []), $lookups); $hardware = $this->buildDebugHardware($snapshot, $tasks, (array)($options['gateway_workspace'] ?? []), $lookups, $actions); + $dynamicImageButtons = $this->buildDebugDynamicImageButtons($tasks); + $decisions = $this->buildDebugDecisions( + $questions, + $conditions, + $rules, + $tasks, + $actions, + (array)($hardware['signal_timeline'] ?? []), + $dynamicImageButtons + ); $recommendations = $this->buildDebugRecommendations($snapshot, $questions, $tasks, $hardware, $conditions, $rules); $summary = $this->buildDebugSummary($snapshot, $recommendations, $hardware); $stages = $this->buildDebugStages($snapshot, $questions, $conditions, $rules, $tasks, $hardware, $summary, $lookups); @@ -871,6 +881,8 @@ class selfserve_wash_flow implements selfserve_wash_flow_i 'rules' => $rules, 'tasks' => $tasks, 'actions' => $actions, + 'dynamic_image_buttons' => $dynamicImageButtons, + 'decisions' => $decisions, 'hardware' => $hardware, 'signal_timeline' => (array)($hardware['signal_timeline'] ?? []), 'graph_annotations' => $annotations, @@ -981,6 +993,9 @@ class selfserve_wash_flow implements selfserve_wash_flow_i $conditionResults = is_array($snapshot['evaluation_trace']['visibility_condition_results'] ?? null) ? (array)$snapshot['evaluation_trace']['visibility_condition_results'] : []; + $expressionTraces = is_array($snapshot['evaluation_trace']['visibility_expression_traces'] ?? null) + ? (array)$snapshot['evaluation_trace']['visibility_expression_traces'] + : []; $items = []; foreach ($questions as $question) { @@ -992,20 +1007,43 @@ class selfserve_wash_flow implements selfserve_wash_flow_i $visible = isset($visibleIds[$questionId]); $answer = array_key_exists($questionId, $answers) ? $answers[$questionId] : null; $state = !$visible ? 'hidden' : ($answer === null ? 'missing' : 'answered'); + $label = (string)($question['question'] ?? $this->debugLabel($lookups, 'questions', $questionId, 'Question ' . $questionId)); + $conditionLabel = $gateId === null ? 'Always visible' : $this->debugLabel($lookups, 'conditions', $gateId, 'Condition ' . $gateId); + $gateSatisfied = $gateId === null || (($conditionResults[$gateId] ?? false) === true); + $causes = []; + if ($gateId !== null) { + $causes[] = $this->debugCause( + 'condition', + $gateId, + $conditionLabel, + true, + ($conditionResults[$gateId] ?? null), + $this->debugExpressionTraceReason($expressionTraces[$gateId] ?? null) + ); + } + if ($visible && $answer === null) { + $causes[] = $this->debugCause('question', $questionId, $label, 'answered', 'missing', 'Visible question has no simulated answer.'); + } + $reason = $visible + ? ($answer === null + ? 'Question ' . $label . ' is visible but has no answer.' + : 'Question ' . $label . ' is visible and answered ' . $this->debugValueLabel($answer) . '.') + : 'Question ' . $label . ' hidden because visibility condition ' . $conditionLabel . ' expected true, actual ' . $this->debugValueLabel($conditionResults[$gateId] ?? null) . '.'; $items[] = [ + 'kind' => 'question', 'id' => $questionId, 'node_id' => 'question:' . $questionId, - 'label' => (string)($question['question'] ?? $this->debugLabel($lookups, 'questions', $questionId, 'Question ' . $questionId)), + 'node_ids' => ['question:' . $questionId], + 'label' => $label, 'visible' => $visible, 'state' => $state, 'answer' => $answer, 'answer_source' => $sources[$questionId] ?? 'missing', 'condition_id' => $gateId, - 'condition' => $gateId === null ? 'Always visible' : $this->debugLabel($lookups, 'conditions', $gateId, 'Condition ' . $gateId), - 'gate_satisfied' => $gateId === null || (($conditionResults[$gateId] ?? false) === true), - 'reason' => $visible - ? ($answer === null ? 'Visible question is missing an answer.' : 'Visible question has an answer.') - : 'Visibility condition did not pass.', + 'condition' => $conditionLabel, + 'gate_satisfied' => $gateSatisfied, + 'reason' => $reason, + 'causes' => $causes, 'order_priority' => (int)($question['order_priority'] ?? 0), ]; } @@ -1036,19 +1074,33 @@ class selfserve_wash_flow implements selfserve_wash_flow_i $actual = $objectType === 'condition' ? ($conditionResults[$objectId] ?? null) : ($answers[$objectId] ?? null); $satisfied = $this->debugRuleSatisfied((string)($rule['type'] ?? ''), $actual); $lookupType = $objectType === 'condition' ? 'conditions' : 'questions'; + $label = (string)($rule['name'] ?? $this->debugLabel($lookups, 'rules', $ruleId, 'Rule ' . $ruleId)); + $objectLabel = $this->debugLabel($lookups, $lookupType, $objectId, ucfirst($objectType) . ' ' . $objectId); + $expected = $this->debugRuleExpectedValue((string)($rule['type'] ?? '')); + $invalidReference = $objectId <= 0 || ($objectType !== 'question' && $objectType !== 'condition'); + $reason = $invalidReference + ? 'Rule ' . $label . ' skipped because its referenced object is invalid.' + : ($satisfied + ? 'Rule ' . $label . ' passed because ' . $objectLabel . ' matched ' . $this->debugExpectedLabel($expected) . '.' + : 'Rule ' . $label . ' failed because ' . $objectLabel . ' expected ' . $this->debugExpectedLabel($expected) . ', actual ' . $this->debugValueLabel($actual) . '.'); $items[] = [ + 'kind' => 'rule', 'id' => $ruleId, 'node_id' => 'rule:' . $ruleId, + 'node_ids' => ['rule:' . $ruleId], 'condition_id' => (int)($rule['condition_id'] ?? 0), - 'label' => (string)($rule['name'] ?? $this->debugLabel($lookups, 'rules', $ruleId, 'Rule ' . $ruleId)), + 'label' => $label, 'type' => (string)($rule['type'] ?? ''), 'object_type' => $objectType, 'object_id' => $objectId, - 'object_label' => $this->debugLabel($lookups, $lookupType, $objectId, ucfirst($objectType) . ' ' . $objectId), + 'object_label' => $objectLabel, 'actual_value' => $actual, 'satisfied' => $satisfied, - 'invalid_reference' => $objectId <= 0 || ($objectType !== 'question' && $objectType !== 'condition'), - 'reason' => $satisfied ? 'Rule passed for the simulated value.' : 'Rule did not pass for the simulated value.', + 'invalid_reference' => $invalidReference, + 'reason' => $reason, + 'causes' => [ + $this->debugCause($objectType ?: 'object', $objectId, $objectLabel, $expected, $actual, $invalidReference ? 'Invalid rule reference.' : null), + ], ]; } @@ -1082,10 +1134,29 @@ class selfserve_wash_flow implements selfserve_wash_flow_i $expression = is_array($condition['expression'] ?? null) ? (array)$condition['expression'] : []; $expressionTrace = is_array($expressionTraces[$conditionId] ?? null) ? (array)$expressionTraces[$conditionId] : null; $nextFix = $expressionTrace === null ? null : $this->nextFixForExpressionTrace($expressionTrace, $lookups); + $label = (string)($condition['name'] ?? $this->debugLabel($lookups, 'conditions', $conditionId, 'Condition ' . $conditionId)); + $causes = []; + $failedExpressionCause = $expressionTrace === null ? null : $this->debugFailedExpressionCause($expressionTrace, $lookups); + if ($failedExpressionCause !== null) { + $causes[] = $failedExpressionCause; + } elseif (!$result) { + foreach ((array)($rulesByCondition[$conditionId] ?? []) as $rule) { + if (($rule['satisfied'] ?? false) !== true) { + foreach ((array)($rule['causes'] ?? []) as $cause) { + if (is_array($cause)) { + $causes[] = $cause; + } + } + break; + } + } + } $items[] = [ + 'kind' => 'condition', 'id' => $conditionId, 'node_id' => 'condition:' . $conditionId, - 'label' => (string)($condition['name'] ?? $this->debugLabel($lookups, 'conditions', $conditionId, 'Condition ' . $conditionId)), + 'node_ids' => ['condition:' . $conditionId], + 'label' => $label, 'result' => $result, 'state' => $result ? 'passed' : 'failed', 'parent_condition_id' => $this->nullableInt($condition['condition_id'] ?? null), @@ -1098,6 +1169,7 @@ class selfserve_wash_flow implements selfserve_wash_flow_i 'reason' => in_array($conditionId, $cycleIds, true) ? 'Condition dependency cycle detected.' : ($expressionTrace['expression']['reason'] ?? ($result ? 'Condition passed.' : 'Condition failed or has no passing rules.')), + 'causes' => $causes, ]; } @@ -1130,6 +1202,12 @@ class selfserve_wash_flow implements selfserve_wash_flow_i $gateTrace[(int)($trace['task_id'] ?? 0)] = $trace; } } + $conditionResults = is_array($snapshot['evaluation_trace']['condition_results'] ?? null) + ? (array)$snapshot['evaluation_trace']['condition_results'] + : []; + $visibleAnswers = is_array($snapshot['debug_candidates']['visible_answers'] ?? null) + ? (array)$snapshot['debug_candidates']['visible_answers'] + : (is_array($snapshot['answers'] ?? null) ? (array)$snapshot['answers'] : []); $bindingsByService = $this->debugGatewayBindingsByService($gatewayWorkspace); $items = []; @@ -1149,25 +1227,32 @@ class selfserve_wash_flow implements selfserve_wash_flow_i $active = isset($activeIds[$taskId]); $gateType = (string)($trace['gate_type'] ?? $task['gate_type'] ?? selfserve_task_gate_type::ALWAYS->value); $gateRefId = $this->nullableInt($trace['gate_ref_id'] ?? $task['gate_ref_id'] ?? $task['condition_id'] ?? null); + $gateRefLabel = $gateRefId === null ? 'Always' : $this->debugGateReferenceLabel($lookups, $gateType, $gateRefId); + $label = (string)($task['task'] ?? $this->debugLabel($lookups, 'tasks', $taskId, 'Task ' . $taskId)); + $gateSatisfied = ($trace['satisfied'] ?? false) === true; + $gateDecision = $this->debugTaskGateDecision($label, $gateType, $gateRefId, $gateRefLabel, $active, $gateSatisfied, $conditionResults, $visibleAnswers); $taskAttachments = is_array($task['attachments'] ?? null) ? array_values($task['attachments']) : ($activeAttachments[$taskId] ?? []); $items[] = [ + 'kind' => 'task', 'id' => $taskId, 'node_id' => 'task:' . $taskId, - 'label' => (string)($task['task'] ?? $this->debugLabel($lookups, 'tasks', $taskId, 'Task ' . $taskId)), + 'node_ids' => ['task:' . $taskId], + 'label' => $label, 'description' => (string)($task['description'] ?? ''), 'active' => $active, 'state' => $active ? 'active' : 'blocked', 'gate_type' => $gateType, 'gate_ref_id' => $gateRefId, - 'gate_ref_label' => $gateRefId === null ? 'Always' : $this->debugGateReferenceLabel($lookups, $gateType, $gateRefId), - 'gate_satisfied' => ($trace['satisfied'] ?? false) === true, + 'gate_ref_label' => $gateRefLabel, + 'gate_satisfied' => $gateSatisfied, 'services' => $services, 'buttons' => $this->normalizeButtonList($task['buttons'] ?? null), 'dynamic_images_vehicle_type' => ($task['dynamic_images_vehicle_type'] ?? null) === null ? null : (int)$task['dynamic_images_vehicle_type'], 'attachments' => $taskAttachments, 'relay_bindings' => $bindings, 'order_priority' => (int)($task['order_priority'] ?? 0), - 'reason' => $active ? 'Task gate passed.' : 'Task gate did not pass.', + 'reason' => $gateDecision['reason'], + 'causes' => $gateDecision['causes'], ]; } @@ -1212,42 +1297,59 @@ class selfserve_wash_flow implements selfserve_wash_flow_i $modeMatches = in_array((string)$action['wash_mode'], [selfserve_studio_actions::MODE_BOTH, $expectedMode], true); $scopeMatches = true; $scopeReason = null; + $scopeCause = null; if ((int)$action['department'] !== 0 && (int)$action['department'] !== $departmentId) { $scopeMatches = false; $scopeReason = 'Action department scope does not match the simulated lane.'; + $scopeCause = $this->debugCause('department', (int)$action['department'], 'Action department scope', $departmentId, (int)$action['department'], $scopeReason); } elseif ((int)$action['lane'] !== 0 && (int)$action['lane'] !== $laneId) { $scopeMatches = false; $scopeReason = 'Action lane scope does not match the simulated lane.'; + $scopeCause = $this->debugCause('lane', (int)$action['lane'], 'Action lane scope', $laneId, (int)$action['lane'], $scopeReason); } elseif ((int)$action['product'] !== 0 && ($vehicleTypeId === null || (int)$action['product'] !== $vehicleTypeId)) { $scopeMatches = false; $scopeReason = 'Action vehicle type scope does not match the simulated vehicle.'; + $scopeCause = $this->debugCause('vehicle_type', (int)$action['product'], 'Action vehicle type scope', $vehicleTypeId, (int)$action['product'], $scopeReason); } elseif ($action['machine_type_id'] !== null && (int)$action['machine_type_id'] !== ($machineTypeId ?? 0)) { $scopeMatches = false; $scopeReason = 'Action machine type scope does not match the simulated lane.'; + $scopeCause = $this->debugCause('machine_type', (int)$action['machine_type_id'], 'Action machine type scope', $machineTypeId, (int)$action['machine_type_id'], $scopeReason); } $conditionId = $this->nullableInt($action['condition_id'] ?? null); $conditionSatisfied = $conditionId === null || (($conditionResults[$conditionId] ?? false) === true); $enabled = (bool)($action['enabled'] ?? true); $active = $enabled && $modeMatches && $scopeMatches && $conditionSatisfied; + $label = (string)$action['name']; + $conditionLabel = $conditionId === null ? 'Always' : $this->debugLabel($lookups, 'conditions', $conditionId, 'Condition ' . $conditionId); + $causes = []; $reason = 'Action would run for this simulator event.'; if (!$enabled) { $reason = 'Action is disabled.'; + $causes[] = $this->debugCause('action', $actionId, $label, true, false, $reason); } elseif (!$modeMatches) { $reason = 'Action wash mode ' . (string)$action['wash_mode'] . ' does not match simulated ' . $expectedMode . ' mode.'; + $causes[] = $this->debugCause('wash_mode', $actionId, 'Action wash mode', selfserve_studio_actions::MODE_BOTH . ' or ' . $expectedMode, (string)$action['wash_mode'], $reason); } elseif (!$scopeMatches) { $reason = $scopeReason ?? 'Action scope does not match the simulated lane.'; + if ($scopeCause !== null) { + $causes[] = $scopeCause; + } } elseif (!$conditionSatisfied) { - $reason = 'Action condition gate did not pass.'; + $reason = 'Action ' . $label . ' skipped because condition ' . $conditionLabel . ' expected true, actual ' . $this->debugValueLabel($conditionResults[$conditionId] ?? null) . '.'; + $causes[] = $this->debugCause('condition', $conditionId, $conditionLabel, true, ($conditionResults[$conditionId] ?? null), $reason); } $items[] = [ + 'kind' => 'action', 'id' => $actionId, 'node_id' => 'action:' . $actionId, - 'label' => (string)$action['name'], + 'node_ids' => ['action:' . $actionId], + 'label' => $label, 'active' => $active, 'state' => $active ? 'active' : 'skipped', 'reason' => $reason, + 'causes' => $causes, 'event' => (string)$action['event'], 'event_label' => selfserve_studio_actions::eventLabel((string)$action['event']), 'wash_mode' => (string)$action['wash_mode'], @@ -1257,7 +1359,7 @@ class selfserve_wash_flow implements selfserve_wash_flow_i 'relay_role' => selfserve_studio_actions::relayRoleForOperation((string)$action['operation']), 'relay_state' => $action['relay_state'], 'condition_id' => $conditionId, - 'condition' => $conditionId === null ? 'Always' : $this->debugLabel($lookups, 'conditions', $conditionId, 'Condition ' . $conditionId), + 'condition' => $conditionLabel, 'condition_satisfied' => $conditionSatisfied, 'scope' => [ 'department' => (int)$action['department'], @@ -1758,7 +1860,30 @@ class selfserve_wash_flow implements selfserve_wash_flow_i string $predictedStatus, ?string $reason ): array { + $id = 'signal:' . $sequence; + $label = trim($runtimeStage . ' ' . $relayRole . ' ' . $signalType); + $targetBinding = $binding['node_id'] ?? null; + $nodeIds = [$id]; + if (isset($payload['action_id'])) { + $nodeIds[] = 'action:' . (int)$payload['action_id']; + } + if (is_string($targetBinding) && $targetBinding !== '') { + $nodeIds[] = $targetBinding; + } + if ($relayId !== null && trim($relayId) !== '') { + $nodeIds[] = 'relay:' . $relayId; + } + $causes = $reason === null ? [] : [ + $this->debugCause('signal', $id, $label, 'sent', $predictedStatus, $reason), + ]; + return [ + 'kind' => 'signal', + 'id' => $id, + 'node_id' => $id, + 'node_ids' => array_values(array_unique($nodeIds)), + 'label' => $label, + 'state' => $predictedStatus, 'sequence' => $sequence, 'runtime_stage' => $runtimeStage, 'signal_type' => $signalType, @@ -1779,6 +1904,7 @@ class selfserve_wash_flow implements selfserve_wash_flow_i 'predicted_status' => $predictedStatus, 'skip_block_reason' => $reason, 'reason' => $reason, + 'causes' => $causes, ]; } @@ -2085,6 +2211,316 @@ class selfserve_wash_flow implements selfserve_wash_flow_i }; } + protected function debugRuleExpectedValue(string $type): mixed + { + return match (strtoupper(trim($type))) { + 'IS_TRUE', 'IS_TRUE_OR_ANY_TRUE' => true, + 'IS_FALSE' => false, + 'IS_SET' => 'set', + 'IS_TRUE_OR_NOT_SET' => 'true or missing', + 'IS_FALSE_OR_NOT_SET' => 'false or missing', + default => strtolower(str_replace('_', ' ', trim($type))), + }; + } + + protected function debugExpectedLabel(mixed $expected): string + { + return $this->debugValueLabel($expected); + } + + protected function debugValueLabel(mixed $value): string + { + if ($value === true) { + return 'true'; + } + if ($value === false) { + return 'false'; + } + if ($value === null) { + return 'missing'; + } + if (is_array($value)) { + $encoded = json_encode($value, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE); + return $encoded === false ? 'array' : $encoded; + } + if ($value instanceof \Stringable) { + return (string)$value; + } + return trim((string)$value) === '' ? 'empty' : (string)$value; + } + + /** + * @return array